diff options
Diffstat (limited to 'frontend/src/components/errors/Error404.js')
-rw-r--r-- | frontend/src/components/errors/Error404.js | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/frontend/src/components/errors/Error404.js b/frontend/src/components/errors/Error404.js index b657482d..bf12453d 100644 --- a/frontend/src/components/errors/Error404.js +++ b/frontend/src/components/errors/Error404.js @@ -1,8 +1,12 @@ -import React from 'react' -import { Link } from 'react-router' +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 +const Error404 = () => ( + <div> + <h1>No Match</h1> + <Link to="/"> + Take me back home ! <span role="img" aria-label="home">🏠</span> + </Link> + </div> +); +export default Error404; |