git ssb

16+

Dominic / patchbay



Tree: 91116b86a5d782a02e668da8c5990803728c90d4

Files: 91116b86a5d782a02e668da8c5990803728c90d4 / app / html / error.js

300 bytesRaw
1const nest = require('depnest')
2const { h } = require('mutant')
3
4exports.gives = nest('app.html.error')
5
6exports.create = function (api) {
7 return nest('app.html.error', error)
8
9 function error (err) {
10 return h('Error', [
11 h('header', err.message),
12 h('pre', err.stack)
13 ])
14 }
15}
16
17

Built with git-ssb-web