git ssb

2+

mixmix / ticktack



Tree: 2cbf6075c6387cd0e72c91a39e1bbcbc91d0f4fa

Files: 2cbf6075c6387cd0e72c91a39e1bbcbc91d0f4fa / app / page / userFind.js

370 bytesRaw
1const nest = require('depnest')
2const { h } = require('mutant')
3
4exports.gives = nest('app.page.userFind')
5
6exports.needs = nest({
7 'app.html.nav': 'first'
8})
9
10exports.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