1
0
mirror of https://gitlab.com/timvisee/send.git synced 2024-09-22 17:11:32 +02:00
send/app/pages/error/index.js
2018-02-15 15:54:59 -08:00

11 lines
323 B
JavaScript

const html = require('choo/html');
const assets = require('../../../common/assets');
module.exports = function(state) {
return html`
<div class="errorPage">
<div class="title">${state.translate('errorPageHeader')}</div>
<img class="errorPage__img" src="${assets.get('illustration_error.svg')}"/>
</div>`;
};