git ssb

2+

mixmix / ticktack



Tree: 5373153e4adeddf52a2f3544a724c2b275571a2e

Files: 5373153e4adeddf52a2f3544a724c2b275571a2e / app / html / link.js

402 bytesRaw
1const nest = require('depnest')
2const { h } = require('mutant')
3
4exports.gives = nest('app.html.link')
5
6exports.needs = nest({
7 'history.sync.push': 'first'
8})
9
10exports.create = (api) => {
11 return nest('app.html.link', (location, body) => {
12 return h('Link', {
13 'ev-click': () => api.history.sync.push(location),
14 className: typeof body === 'string' ? '-string' : ''
15 }, body)
16 })
17}
18

Built with git-ssb-web