git ssb

16+

Dominic / patchbay



Tree: 9ab6d64e342c9f19671639cb458beab51e4ffe02

Files: 9ab6d64e342c9f19671639cb458beab51e4ffe02 / 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