send/app/templates/downloadButton/index.js
2018-02-15 15:54:59 -08:00

15 lines
334 B
JavaScript

const html = require('choo/html');
module.exports = function(state, emit) {
function download(event) {
event.preventDefault();
emit('download', state.fileInfo);
}
return html`
<div>
<button class="btn btn--download"
onclick=${download}>${state.translate('downloadButtonLabel')}
</button>
</div>`;
};