1
0
mirror of https://github.com/ascribe/onion.git synced 2024-12-22 17:33:14 +01:00

Add getLangText to ErrorNotFoundPage

This commit is contained in:
Tim Daubenschütz 2015-09-30 11:06:42 +02:00
parent 99d29449a3
commit dc753caf87

View File

@ -2,6 +2,8 @@
import React from 'react';
import { getLangText } from '../utils/lang_utils';
let ErrorNotFoundPage = React.createClass({
render() {
@ -11,7 +13,7 @@ let ErrorNotFoundPage = React.createClass({
<div className="error-wrapper">
<h1>404</h1>
<p>
Ups, the page you are looking for does not exist.
{getLangText('Ups, the page you are looking for does not exist.')}
</p>
</div>
</div>