const html = require('choo/html'); module.exports = function(state, emit) { function download(event) { event.preventDefault(); emit('download', state.fileInfo); } return html`
`; };