git ssb

7+

dinoworm ๐Ÿ› / patchcore



Tree: f9ed06087823883079a80d695d1e78d5a58b4560

Files: f9ed06087823883079a80d695d1e78d5a58b4560 / about / html / link.js

338 bytesRaw
1var h = require('mutant/h')
2var nest = require('depnest')
3
4exports.needs = nest({
5 'about.obs.name': 'first'
6})
7
8exports.gives = nest('about.html.link')
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