Files: 49c6e5459b68f2a30bcecf7727b8c9a99cfe4e79 / example / app / pages / home.js
267 bytesRaw
1 | module.exports = { |
2 | needs: { |
3 | inu: { html: 'first' }, |
4 | app: { modules: { layout: 'first' } } |
5 | }, |
6 | create: (api) => ({ |
7 | route: '/', |
8 | view: (model, dispatch) => api.app.modules.layout(model, dispatch)(api.inu.html` |
9 | <div>home!</div> |
10 | `) |
11 | }) |
12 | } |
13 |
Built with git-ssb-web