git ssb

16+

Dominic / patchbay



Tree: e056ff8401226fbfa872e8996202d3a8294e0aa3

Files: e056ff8401226fbfa872e8996202d3a8294e0aa3 / 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