nfp_sites/heimaerbest/app/site_404.js

14 lines
196 B
JavaScript
Raw Normal View History

2023-02-15 05:18:18 +00:00
const m = require('mithril')
const NotFound = {
oninit: function(vnode) {
this.error = ''
},
view: function(vnode) {
return m('div', 'Not found')
},
}
module.exports = NotFound