Files: c26a377b747816479b1dc93f160726ef84bf6205 / app / html / app.js
317 bytesRaw
1 | const nest = require('depnest') |
2 | |
3 | exports.gives = nest('app.html.app') |
4 | |
5 | exports.needs = nest({ |
6 | 'app.sync.initialize': 'map', |
7 | 'app.sync.nav': 'first' |
8 | }) |
9 | |
10 | exports.create = (api) => { |
11 | return nest({ |
12 | 'app.html.app': function app () { |
13 | api.app.sync.initialize() |
14 | |
15 | return api.app.sync.nav() |
16 | } |
17 | }) |
18 | } |
19 | |
20 |
Built with git-ssb-web