drop.chapril.org-firefoxsend/app/ui/blank.js
2019-02-12 12:27:52 -08:00

15 lines
370 B
JavaScript

const html = require('choo/html');
module.exports = function() {
return html`
<main class="main relative">
<section
class="h-full w-full p-6 z-10 md:flex md:flex-row md:rounded-lg md:shadow-big"
>
<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>
`;
};