error.js 228 B

123456789101112
  1. const html = require('choo/html');
  2. export default function error(_state, _emit) {
  3. return html`
  4. <body>
  5. <div id="white">
  6. <h1>Error</h1>
  7. <p>Sorry, an error occurred.</p>
  8. </div>
  9. </body>
  10. `;
  11. }