git ssb

7+

dinoworm ๐Ÿ› / patchcore



Tree: 7ce1851294fbc4a8477cf9fb394510782f4d76b4

Files: 7ce1851294fbc4a8477cf9fb394510782f4d76b4 / about / html / image.js

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