drop.chapril.org-firefoxsend/android/pages/error.js

13 lines
228 B
JavaScript
Raw Normal View History

const html = require('choo/html');
export default function error(_state, _emit) {
2018-11-16 21:39:36 +01:00
return html`
<body>
<div id="white">
<h1>Error</h1>
<p>Sorry, an error occurred.</p>
</div>
</body>
`;
}