summaryrefslogtreecommitdiff
path: root/frontend/src/components/errors/Error404.js
blob: bf12453d2a0a07b0020c084ab6d3bf1d6c3ecb20 (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