summaryrefslogtreecommitdiff
path: root/frontend/src/components/errors/Error404.js
blob: 9a5e005ec6148ab2ac5a002aece879ad9fefd995 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import React from 'react';
import { Link } from 'react-router-dom';

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;
bgstack15