drop.chapril.org-firefoxsend/app/ui/okDialog.js

15 lines
436 B
JavaScript
Raw Normal View History

2018-10-25 04:32:53 +02:00
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">
2018-11-16 21:39:36 +01:00
<div class="text-center m-8 leading-normal">${message}</div>
2019-02-11 22:48:06 +01:00
<button class="btn rounded-lg w-full flex-no-shrink" onclick="${close}">
2018-11-16 21:39:36 +01:00
${state.translate('okButton')}
</button>
</send-ok-dialog>
2018-11-16 21:39:36 +01:00
`;
2018-10-25 04:32:53 +02:00
};
};