Files: 84f42d561913f861b364caecc35050feadc23744 / overrides / patchcore / message / html / action / reply.js
262 bytesRaw
1 | var h = require('mutant/h') |
2 | var nest = require('depnest') |
3 | |
4 | exports.gives = nest('message.html.action') |
5 | |
6 | exports.create = (api) => { |
7 | return nest('message.html.action', function reply (msg) { |
8 | return h('a', { href: msg.key, anchor: 'reply' }, 'Reply') |
9 | }) |
10 | } |
11 |
Built with git-ssb-web