houdini/client/js/components/top-nav.js
2020-04-23 13:44:02 -05:00

10 lines
220 B
JavaScript

// License: LGPL-3.0-or-later
const h = require('flimflam/h')
module.exports = title =>
h('div.bg-grey-2', [
h('div.container.px-2.py-1.table.width-full', [
h('h4.m-0.middle-cell.py-1', title)
])
])