git ssb

16+

Dominic / patchbay



Tree: bf9a85c515931e001a2c4cdc11f05ebfc03b8131

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