summaryrefslogtreecommitdiff
path: root/frontend/src/components/errors
diff options
context:
space:
mode:
authorJoffrey BION <joffrey.bion@gmail.com>2018-06-08 20:49:20 +0200
committerJoffrey BION <joffrey.bion@gmail.com>2018-06-09 12:49:52 +0200
commitfdffc7e26ffc4af07aa8c0e5fc76e85901f1031b (patch)
tree1d881922e5ca6a9e688ad5b7aa27be9ded45472a /frontend/src/components/errors
parentHistory entry about Livedoc (diff)
downloadseven-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.js11
-rw-r--r--frontend/src/components/errors/errorToastContainer.js2
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 />
);
bgstack15