summaryrefslogtreecommitdiff
path: root/frontend/src/components/errors/Error404.js
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/components/errors/Error404.js')
-rw-r--r--frontend/src/components/errors/Error404.js8
1 files changed, 8 insertions, 0 deletions
diff --git a/frontend/src/components/errors/Error404.js b/frontend/src/components/errors/Error404.js
new file mode 100644
index 00000000..b657482d
--- /dev/null
+++ b/frontend/src/components/errors/Error404.js
@@ -0,0 +1,8 @@
+import React from 'react'
+import { Link } from 'react-router'
+
+const Error404 = () => <div>
+ <h1>No Match</h1>
+ <Link to="/">Take me back home ! 🏠</Link>
+</div>
+export default Error404 \ No newline at end of file
bgstack15