git ssb

16+

Dominic / patchbay



Tree: b63d575a425022d588c70f9f193022bfdda8868d

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