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

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