Files: d2ef619dd77cafe0c113840831438790127a1875 / app / page / userFind.js
370 bytesRaw
1 | const nest = require('depnest') |
2 | const { h } = require('mutant') |
3 | |
4 | exports.gives = nest('app.page.userFind') |
5 | |
6 | exports.needs = nest({ |
7 | 'app.html.nav': 'first' |
8 | }) |
9 | |
10 | exports.create = (api) => { |
11 | return nest('app.page.userFind', userFind) |
12 | |
13 | function userFind (location) { |
14 | |
15 | return h('Page -userFind', [ |
16 | h('h1', 'Find a User'), |
17 | api.app.html.nav() |
18 | ]) |
19 | } |
20 | } |
21 |
Built with git-ssb-web