spee.ch/react/components/FourOhFourPage/index.js
2018-02-21 17:02:57 -08:00

18 lines
352 B
JavaScript

import React from 'react';
import NavBar from 'containers/NavBar';
class FourOhForPage extends React.Component {
render () {
return (
<div>
<NavBar />
<div className='row row--padded'>
<h2>404</h2>
<p>That page does not exist</p>
</div>
</div>
);
}
};
export default FourOhForPage;