nfp_sites/heimaerbest/app/footer.js

16 lines
200 B
JavaScript

const m = require('mithril')
const Footer = {
view: function() {
return [
m('div.first'),
m('div.middle', [
]),
m('div'),
]
},
}
module.exports = Footer