mirror of
https://gitlab.com/timvisee/send.git
synced 2025-12-09 19:55:34 +00:00
removed old ui
This commit is contained in:
13
app/ui/okDialog.js
Normal file
13
app/ui/okDialog.js
Normal file
@@ -0,0 +1,13 @@
|
||||
const html = require('choo/html');
|
||||
|
||||
module.exports = function(message) {
|
||||
return function(state, emit, close) {
|
||||
return html`
|
||||
<div class="flex flex-col max-w-xs p-4">
|
||||
<div class="text-center m-8">${message}</div>
|
||||
<button class="border rounded bg-blue text-white leading-loose w-full" onclick=${close}>${state.translate(
|
||||
'okButton'
|
||||
)}</button>
|
||||
</div>`;
|
||||
};
|
||||
};
|
||||
Reference in New Issue
Block a user