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.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/frontend/src/components/errors/Error404.js b/frontend/src/components/errors/Error404.js
index 9a5e005e..07046632 100644
--- a/frontend/src/components/errors/Error404.js
+++ b/frontend/src/components/errors/Error404.js
@@ -1,7 +1,7 @@
import React from 'react';
import { Link } from 'react-router-dom';
-const Error404 = () => (
+export const Error404 = () => (
<div>
<h1>No Match</h1>
<Link to="/">
@@ -9,4 +9,3 @@ const Error404 = () => (
</Link>
</div>
);
-export default Error404;
bgstack15