Files: e73bff8390f085ab1944c5d9ac4c514cbbacf355 / app / html / app.js
447 bytesRaw
1 | const nest = require('depnest') |
2 | const values = require('lodash/values') |
3 | const insertCss = require('insert-css') |
4 | |
5 | exports.gives = nest('app.html.app') |
6 | |
7 | exports.needs = nest({ |
8 | 'history.sync.push': 'first', |
9 | 'styles.css': 'first' |
10 | }) |
11 | |
12 | exports.create = (api) => { |
13 | return nest('app.html.app', app) |
14 | |
15 | function app () { |
16 | const css = values(api.styles.css()).join('\n') |
17 | insertCss(css) |
18 | |
19 | return api.history.sync.push({ page: 'home' }) |
20 | } |
21 | } |
22 |
Built with git-ssb-web