2018-09-24 18:30:27 +02:00
|
|
|
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>
|
|
|
|
`;
|
2018-09-24 18:30:27 +02:00
|
|
|
}
|