git ssb

3+

arj / patchbook



Tree: 93aed91e8e392b4b011fbacc5cccc010522e986d

Files: 93aed91e8e392b4b011fbacc5cccc010522e986d / book / html / title.js

483 bytesRaw
1const nest = require('depnest')
2const { h, when } = require('mutant')
3
4exports.needs = nest({
5 'blob.sync.url': 'first'
6})
7
8exports.gives = nest(
9 'book.html.title'
10)
11
12exports.create = (api) => {
13 return nest('book.html.title', title)
14 function title ({title, msg, isEditing, onUpdate}) {
15 return h('section.title',
16 when(isEditing,
17 h('input', {'ev-input': e => onUpdate(e.target.value), value: title}),
18 h('a', {href: msg.key}, title)
19 )
20 )
21 }
22}
23

Built with git-ssb-web