Files: c20f1f54514253fb0cd2fbeb38bc3cbbc5f0f12d / app / page / groupNew.js
414 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 | 'translations.sync.strings': 'first' |
8 | }) |
9 | |
10 | exports.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 | '****' |
16 | ]) |
17 | } |
18 | } |
19 |
Built with git-ssb-web