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