spee.ch/react/containers/FourOhFourPage/view.jsx
2018-03-15 10:54:41 -07:00

24 lines
561 B
JavaScript

import React from 'react';
import NavBar from 'containers/NavBar/index';
import Helmet from 'react-helmet';
class FourOhForPage extends React.Component {
render () {
const {title, host} = this.props;
return (
<div>
<Helmet>
<title>{title} - 404</title>
<link rel='canonical' href={`${host}/404`} />
</Helmet>
<NavBar />
<div className='row row--padded'>
<h2>404</h2>
<p>That page does not exist</p>
</div>
</div>
);
}
};
export default FourOhForPage;