git ssb

16+

Dominic / patchbay



Tree: 728c0ce9d46f93e3a253ac9117807be3cd9e4d96

Files: 728c0ce9d46f93e3a253ac9117807be3cd9e4d96 / 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