git ssb

2+

mixmix / ticktack



Tree: 91f795551bfd401dbec69e1b719569052d05ab3c

Files: 91f795551bfd401dbec69e1b719569052d05ab3c / app / page / userFind.js

451 bytesRaw
1const nest = require('depnest')
2const { h } = require('mutant')
3
4exports.gives = nest('app.page.userFind')
5
6exports.needs = nest({
7 'translations.sync.strings': 'first',
8 'app.html.nav': 'first'
9})
10
11exports.create = (api) => {
12 var strings = api.translations.sync.strings()
13 return nest('app.page.userFind', userFind)
14
15 function userFind (location) {
16
17 return h('Page -userFind', {title: strings.userFind}, [
18 string.stub
19 ])
20 }
21}
22
23
24
25

Built with git-ssb-web