Files: 2f3728d62f4995c91fc3de4f0ca6b5a08ceccfb7 / app / page / userFind.js
426 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 | 'translations.sync.strings': 'first', |
8 | }) |
9 | |
10 | exports.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