git ssb

2+

mixmix / ticktack



Tree: b562e05b785dd3f68360267ec1b32b9c9e775278

Files: b562e05b785dd3f68360267ec1b32b9c9e775278 / app / page / error.js

465 bytesRaw
1const nest = require('depnest')
2const { h } = require('mutant')
3
4exports.gives = nest('app.page.error')
5
6exports.needs = nest({
7 'translations.sync.strings': 'first',
8 'app.html.nav': 'first'
9})
10
11exports.create = (api) => {
12 var strings = api.translations.sync.strings()
13
14 return nest('app.page.error', error)
15
16 function error (location) {
17 return h('Page -error', {title: strings.error}, [
18 strings.errorNotFound,
19 location.error
20 ])
21 }
22}
23
24
25
26

Built with git-ssb-web