Files: 3c63691a3ff381ff83e86a97ce3246807bccae1e / router / html / page / notifications.js
289 bytesRaw
1 | const { h } = require('mutant') |
2 | const nest = require('depnest') |
3 | |
4 | exports.gives = nest('router.html.page') |
5 | |
6 | exports.create = function (api) { |
7 | return nest('router.html.page', (path) => { |
8 | if (path !== '/notifications') return |
9 | |
10 | return h('div.notifications', 'notifications') |
11 | }) |
12 | } |
13 | |
14 |
Built with git-ssb-web