blank.js 363 B

1234567891011121314
  1. const html = require('choo/html');
  2. module.exports = function() {
  3. return html`
  4. <main class="main">
  5. <section
  6. class="h-full w-full p-6 md:p-8 md:flex md:flex-row md:rounded-xl md:shadow-big"
  7. >
  8. <div class="md:mr-6 md:w-1/2 w-full"></div>
  9. <div class="md:w-1/2 mt-6 md:mt-0 w-full"></div>
  10. </section>
  11. </main>
  12. `;
  13. };