mirror of
https://github.com/ascribe/onion.git
synced 2024-11-15 09:35:10 +01:00
25 lines
615 B
JavaScript
25 lines
615 B
JavaScript
'use strict';
|
|
|
|
import React from 'react';
|
|
|
|
import { getLangText } from '../utils/lang_utils';
|
|
|
|
|
|
let ErrorNotFoundPage = React.createClass({
|
|
render() {
|
|
return (
|
|
<div className="row">
|
|
<div className="col-md-12">
|
|
<div className="error-wrapper">
|
|
<h1>404</h1>
|
|
<p>
|
|
{getLangText('Ups, the page you are looking for does not exist.')}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
});
|
|
|
|
export default ErrorNotFoundPage; |