Files: c56c903653fc2e7f3538666e516e135a0571f0a6 / app / page / groupFind.js
449 bytesRaw
1 | const nest = require('depnest') |
2 | const { h } = require('mutant') |
3 | |
4 | exports.gives = nest('app.page.groupFind') |
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.groupFind', groupFind) |
13 | |
14 | function groupFind (location) { |
15 | return h('Page -groupFind', {title: strings.groupFind}, [ |
16 | h('p', `key: ${location.key}`) |
17 | ]) |
18 | } |
19 | } |
20 | |
21 | |
22 | |
23 |
Built with git-ssb-web