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 (state, prev, send) {
return html`
${pathname(state, prev, send)}
${nav(state, prev, send)}
${emailList(state, prev, send)}
${email(state, prev, send)}
`
}