git ssb

2+

mixmix / ticktack



Tree: 6a83e79b4f03d4de17ec9cb6ac84f25423f5ac0a

Files: 6a83e79b4f03d4de17ec9cb6ac84f25423f5ac0a / app / page / userFind.js

426 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})
9
10exports.create = (api) => {
11 var strings = api.translations.sync.strings()
12 return nest('app.page.userFind', userFind)
13
14 function userFind (location) {
15
16 return h('Page -userFind', {title: strings.userFind}, [
17 string.stub
18 ])
19 }
20}
21
22
23
24
25

Built with git-ssb-web