drop.chapril.org-firefoxsend/app/templates/modal/index.js
2018-09-27 15:46:46 -07:00

16 lines
337 B
JavaScript

const html = require('choo/html');
module.exports = function(state, emit) {
return html`
<div class="modal" onclick=${close}>
<div class="modal__box" onclick=${e => e.stopPropagation()}>
${state.modal(state, emit, close)}
</div>
</div>`;
function close(event) {
state.modal = null;
emit('render');
}
};