git ssb

2+

mixmix / ticktack



Tree: 9bf270081d898c0ec622f792b7f8e6e340f7a102

Files: 9bf270081d898c0ec622f792b7f8e6e340f7a102 / app / page / groupFind.js

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

Built with git-ssb-web