diff --git a/react/components/FourOhFourPage/index.js b/react/components/FourOhFourPage/index.js new file mode 100644 index 00000000..6a7c80b9 --- /dev/null +++ b/react/components/FourOhFourPage/index.js @@ -0,0 +1,18 @@ +import React from 'react'; +import NavBar from 'containers/NavBar'; + +class FourOhForPage extends React.Component { + render () { + return ( +
+ +
+

404

+

That page does not exist

+
+
+ ); + } +}; + +export default FourOhForPage; diff --git a/react/root.js b/react/root.js index e296ea7b..86c1f53d 100644 --- a/react/root.js +++ b/react/root.js @@ -7,6 +7,7 @@ import PublishPage from 'components/PublishPage'; import AboutPage from 'components/AboutPage'; import LoginPage from 'containers/LoginPage'; import ShowPage from 'containers/ShowPage'; +import FourOhFourPage from 'components/FourOhFourPage'; const Root = ({ store }) => ( @@ -16,7 +17,8 @@ const Root = ({ store }) => ( - + +