24
1
Fork 0
drop.chapril.org-firefoxsend/android/pages/error.js

13 lines
228 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>
`;
}