git ssb

16+

Dominic / patchbay



Tree: cf9305a29b08a6ec02b844e7ec9a6970976e6b07

Files: cf9305a29b08a6ec02b844e7ec9a6970976e6b07 / about / html / link.js

333 bytesRaw
1var nest = require('depnest')
2var { h } = require('mutant')
3
4exports.gives = nest('about.html.link')
5
6exports.needs = nest({
7 'about.obs.name': 'first'
8})
9
10exports.create = function (api) {
11 return nest('about.html.link', function (id, text = null) {
12 return h('a', {href: id, title: id}, text || api.about.obs.name(id))
13 })
14}
15

Built with git-ssb-web