12 lines
277 B
JavaScript
12 lines
277 B
JavaScript
|
import html from 'choo/html';
|
||
|
|
||
|
export const errorView = (state, emit, i18n) => {
|
||
|
return html`<section class="error card">
|
||
|
<header>
|
||
|
<h1>${i18n.__('404.header')}</h1>
|
||
|
</header>
|
||
|
<footer>
|
||
|
<h2>${i18n.__('404.subheader')}</h2>
|
||
|
</footer>
|
||
|
</section>`;
|
||
|
}
|