Files: aa4c25f3c365e275c42b08f8e34ef4e6c2b66d93 / app / page / image.js
481 bytesRaw
1 | const nest = require('depnest') |
2 | const { h } = require('mutant') |
3 | |
4 | exports.gives = nest('app.page.image') |
5 | |
6 | exports.needs = nest({ |
7 | 'about.html.image': 'first', |
8 | 'about.obs.name': 'first', |
9 | 'app.html.thread': 'first', |
10 | 'blob.sync.url': 'first' |
11 | }) |
12 | |
13 | exports.create = (api) => { |
14 | return nest('app.page.image', function (location) { |
15 | return h('Page -image', [ |
16 | h('div.content', [ |
17 | h('img', {src: api.blob.sync.url(location.blob || location)}) |
18 | ]) |
19 | ]) |
20 | }) |
21 | } |
22 | |
23 | |
24 |
Built with git-ssb-web