git ssb

16+

Dominic / patchbay



Tree: cfe9ce7cf96f4027441c0d3ce54ead220a5018b1

Files: cfe9ce7cf96f4027441c0d3ce54ead220a5018b1 / about / html / link.js

334 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
16

Built with git-ssb-web