Files: 91f795551bfd401dbec69e1b719569052d05ab3c / app / page / groupNew.js
449 bytesRaw
1 | const nest = require('depnest') |
2 | const { h } = require('mutant') |
3 | |
4 | exports.gives = nest('app.page.groupNew') |
5 | |
6 | exports.needs = nest({ |
7 | 'app.html.nav': 'first', |
8 | 'translations.sync.strings': 'first' |
9 | }) |
10 | |
11 | exports.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