drop.chapril.org-firefoxsend/app/ui/okDialog.js
2019-01-16 12:49:11 -08:00

15 lines
433 B
JavaScript

const html = require('choo/html');
module.exports = function(message) {
return function(state, emit, close) {
return html`
<send-ok-dialog class="flex flex-col max-w-xs p-4">
<div class="text-center m-8 leading-normal">${message}</div>
<button class="btn rounded w-full flex-no-shrink" onclick="${close}">
${state.translate('okButton')}
</button>
</send-ok-dialog>
`;
};
};