Files: 81b5142c9c1ffb82378b6e32ba1b24a2d3a029e5 / app / page / error.js
484 bytesRaw
1 | const nest = require('depnest') |
2 | const { h } = require('mutant') |
3 | |
4 | exports.gives = nest('app.page.error') |
5 | |
6 | exports.needs = nest({ |
7 | 'translations.sync.strings': 'first' |
8 | }) |
9 | |
10 | exports.create = (api) => { |
11 | var strings = api.translations.sync.strings() |
12 | |
13 | return nest('app.page.error', error) |
14 | |
15 | function error (location) { |
16 | return h('Page -error', {title: strings.error}, [ |
17 | h('div.message', strings.errorNotFound), |
18 | h('pre', [JSON.stringify(location, null, 2)]) |
19 | ]) |
20 | } |
21 | } |
22 |
Built with git-ssb-web