mirror of
https://gitlab.com/timvisee/send.git
synced 2024-11-14 23:22:36 +01:00
11 lines
200 B
JavaScript
11 lines
200 B
JavaScript
const html = require('choo/html');
|
|
|
|
export default function error(_state, _emit) {
|
|
return html`<body>
|
|
<div id="white">
|
|
<h1>Error</h1>
|
|
<p>Sorry, an error occurred.</p>
|
|
</div>
|
|
</body>`;
|
|
}
|