git ssb

10+

Matt McKegg / patchwork



Tree: ee9f43c70d668ebeffd5077be5daae16dd4f47b4

Files: ee9f43c70d668ebeffd5077be5daae16dd4f47b4 / overrides / patchcore / message / html / action / reply.js

353 bytesRaw
1var h = require('mutant/h')
2var nest = require('depnest')
3
4exports.needs = nest({'intl.sync.i18n': 'first'})
5
6exports.gives = nest('message.html.action')
7
8exports.create = (api) => {
9 const i18n = api.intl.sync.i18n
10 return nest('message.html.action', function reply (msg) {
11 return h('a', { href: msg.key, anchor: 'reply' }, i18n('Reply'))
12 })
13}
14

Built with git-ssb-web