git ssb

2+

mixmix / ticktack



Tree: b361e2bf3aa5a852f1427695f6377cf100494224

Files: b361e2bf3aa5a852f1427695f6377cf100494224 / app / page / groupNew.js

423 bytesRaw
1const nest = require('depnest')
2const { h } = require('mutant')
3
4exports.gives = nest('app.page.groupNew')
5
6exports.needs = nest({
7 'translations.sync.strings': 'first'
8})
9
10exports.create = (api) => {
11 return nest('app.page.groupNew', groupNew)
12 var strings = api.translations.sync.strings()
13 function groupNew (location) {
14 return h('Page -groupNew', {title: strings.groupNew}, [
15 strings.stub
16 ])
17 }
18}
19
20
21
22

Built with git-ssb-web