git ssb

1+

Daan Patchwork / patchwork



Tree: 4d9f238ff73f7136cd292da88f06c17fe1a8c445

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

441 bytesRaw
1const h = require('mutant/h')
2const nest = require('depnest')
3
4exports.needs = nest({
5 'about.obs.imageUrl': 'first',
6 'about.obs.color': 'first'
7})
8
9exports.gives = nest('about.html.image')
10
11exports.create = function (api) {
12 return nest('about.html.image', function (id) {
13 return h('img', {
14 className: 'Avatar',
15 style: { 'background-color': api.about.obs.color(id) },
16 src: api.about.obs.imageUrl(id)
17 })
18 })
19}
20

Built with git-ssb-web