service-core/example/app/frontpage/frontpage.js

12 lines
159 B
JavaScript

const m = require('mithril')
const Frontpage = {
view: function() {
return [
m('h4.header', 'Frontpage'),
]
}
}
module.exports = Frontpage