git ssb

2+

mixmix / ticktack



Tree: b562e05b785dd3f68360267ec1b32b9c9e775278

Files: b562e05b785dd3f68360267ec1b32b9c9e775278 / app / page / groupIndex.js

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

Built with git-ssb-web