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

13 lines
327 B
JavaScript
Raw Normal View History

2018-10-25 04:07:10 +02:00
const html = require('choo/html');
module.exports = function() {
2018-11-16 21:39:36 +01:00
return html`
<main class="main relative">
<section class="h-full w-full p-6 md:flex md:flex-row z-10">
<div class="md:mr-6 md:w-1/2 w-full"></div>
<div class="md:w-1/2 mt-6 md:mt-0 w-full"></div>
</section>
</main>
2018-11-16 21:39:36 +01:00
`;
2018-10-25 04:07:10 +02:00
};