const html = require('choo/html'); const titleSection = require('../../templates/title'); const downloadPassword = require('../../templates/downloadPassword'); module.exports = function(state, emit) { return html` ${titleSection(state)} ${state.translate('downloadMessage2')} ${downloadPassword(state, emit)} ${state.translate('sendYourFilesLink')} `; };