fox-send/app/ui/blank.js

15 lines
363 B
JavaScript
Raw Normal View History

2018-10-25 02:07:10 +00:00
const html = require('choo/html');
module.exports = function() {
2018-11-16 20:39:36 +00:00
return html`
2019-02-22 21:31:54 +00:00
<main class="main">
2019-02-11 21:48:06 +00:00
<section
2019-05-03 16:26:10 +00:00
class="h-full w-full p-6 md:p-8 md:flex md:flex-row md:rounded-xl md:shadow-big"
2019-02-11 21:48:06 +00:00
>
<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 20:39:36 +00:00
`;
2018-10-25 02:07:10 +00:00
};