git ssb

1+

Daan Patchwork / patchwork



Tree: 4d9f238ff73f7136cd292da88f06c17fe1a8c445

Files: 4d9f238ff73f7136cd292da88f06c17fe1a8c445 / lib / depject / about / html / link.js

344 bytesRaw
1const h = require('mutant/h')
2const 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