diff options
author | Joffrey BION <joffrey.bion@gmail.com> | 2018-06-08 20:49:20 +0200 |
---|---|---|
committer | Joffrey BION <joffrey.bion@gmail.com> | 2018-06-09 12:49:52 +0200 |
commit | fdffc7e26ffc4af07aa8c0e5fc76e85901f1031b (patch) | |
tree | 1d881922e5ca6a9e688ad5b7aa27be9ded45472a /frontend/src/components/errors | |
parent | History entry about Livedoc (diff) | |
download | seven-wonders-fdffc7e26ffc4af07aa8c0e5fc76e85901f1031b.tar.gz seven-wonders-fdffc7e26ffc4af07aa8c0e5fc76e85901f1031b.tar.bz2 seven-wonders-fdffc7e26ffc4af07aa8c0e5fc76e85901f1031b.zip |
Cleanup the mess
Diffstat (limited to 'frontend/src/components/errors')
-rw-r--r-- | frontend/src/components/errors/Error404.js | 11 | ||||
-rw-r--r-- | frontend/src/components/errors/errorToastContainer.js | 2 |
2 files changed, 1 insertions, 12 deletions
diff --git a/frontend/src/components/errors/Error404.js b/frontend/src/components/errors/Error404.js deleted file mode 100644 index 07046632..00000000 --- a/frontend/src/components/errors/Error404.js +++ /dev/null @@ -1,11 +0,0 @@ -import React from 'react'; -import { Link } from 'react-router-dom'; - -export const Error404 = () => ( - <div> - <h1>No Match</h1> - <Link to="/"> - Take me back home ! <span role="img" aria-label="home">🏠</span> - </Link> - </div> -); diff --git a/frontend/src/components/errors/errorToastContainer.js b/frontend/src/components/errors/errorToastContainer.js index d8da6af6..794d3d3f 100644 --- a/frontend/src/components/errors/errorToastContainer.js +++ b/frontend/src/components/errors/errorToastContainer.js @@ -2,6 +2,6 @@ import React from 'react'; import ReduxToastr from 'react-redux-toastr'; import './react-redux-toastr.min.css'; -export const ErrorToastContainer = props => ( +export const ErrorToastContainer = () => ( <ReduxToastr timeOut={4000} preventDuplicates position="bottom-left" progressBar /> ); |