const html = require('../../../html')
const emailList = require('../elements/email-list')
const pathname = require('../elements/pathname')
const email = require('../elements/email')
const nav = require('../elements/nav')
module.exports = function (params, state, send) {
return html`
${pathname(params, state, send)}
${nav(params, state, send)}
${emailList(params, state, send)}
${email(params, state, send)}
`
}