Files
buuh/examples/mailbox/views/mailbox.js
T

18 lines
475 B
JavaScript
Raw Normal View History

2016-05-13 16:48:46 +07:00
const choo = require('../../../')
const emailList = require('../elements/email-list')
const pathname = require('../elements/pathname')
const nav = require('../elements/nav')
2016-05-14 10:44:44 +07:00
module.exports = function (params, state, send) {
return choo.view`
<main class="mw5 mw7-ns center cf">
${pathname(params, state, send)}
${nav(params, state, send)}
<section class="fl mt4 w-80 db">
${emailList(params, state, send)}
</section>
</main>
`
2016-05-13 16:48:46 +07:00
}