9 lines
210 B
JavaScript
9 lines
210 B
JavaScript
function UnderConstruction(initialVnode) {
|
|
return {
|
|
view: function(vnode) {
|
|
return m('h1.text-center.under-construction', 'Under Construction!');
|
|
}
|
|
}
|
|
}
|
|
|
|
export default UnderConstruction; |