git ssb

2+

mixmix / ticktack



Tree: 9bf270081d898c0ec622f792b7f8e6e340f7a102

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

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

Built with git-ssb-web