git ssb

16+

Dominic / patchbay



Tree: c7999f1fdd9a1c1a94d504c23f3fd6ac38f36dbd

Files: c7999f1fdd9a1c1a94d504c23f3fd6ac38f36dbd / app / html / app.js

420 bytesRaw
1const nest = require('depnest')
2const { h } = require('mutant')
3
4exports.gives = nest('app.html.app')
5
6exports.needs = nest({
7 'app.html.tabs': 'first',
8 'settings.sync.get': 'first'
9})
10
11exports.create = function (api) {
12 return nest('app.html.app', app)
13
14 function app (initialTabs) {
15 return h('App', api.app.html.tabs({
16 initial: initialTabs || api.settings.sync.get('patchbay.defaultTabs')
17 }))
18 }
19}
20

Built with git-ssb-web