1
0
mirror of https://gitlab.com/timvisee/send.git synced 2024-09-20 16:11:33 +02:00
send/app/ui/blank.js

13 lines
327 B
JavaScript

const html = require('choo/html');
module.exports = function() {
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>
`;
};