git ssb

2+

mixmix / ticktack



Tree: 0e154203de9454a9f8f6a7ecc08aa6f661819f6d

Files: 0e154203de9454a9f8f6a7ecc08aa6f661819f6d / app / html / app.js

317 bytesRaw
1const nest = require('depnest')
2
3exports.gives = nest('app.html.app')
4
5exports.needs = nest({
6 'app.sync.initialize': 'map',
7 'app.sync.nav': 'first'
8})
9
10exports.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