Files: 0e144c087bd7ba0cff8bda32d63d9d4da441eb2b / app / html / app.js
226 bytesRaw
1 | const nest = require('depnest') |
2 | const { h } = require('mutant') |
3 | |
4 | |
5 | exports.gives = nest('app.html.app') |
6 | |
7 | exports.create = (api) => { |
8 | return nest('app.html.app', app) |
9 | |
10 | function app () { |
11 | return h('h1', 'Hello!') |
12 | |
13 | |
14 | } |
15 | } |
16 | |
17 |
Built with git-ssb-web