blob: 0704663224d55637662a0b7c12be6609a63e3818 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import React from 'react';
import { Link } from 'react-router-dom';
export const Error404 = () => (
<div>
<h1>No Match</h1>
<Link to="/">
Take me back home ! <span role="img" aria-label="home">🏠</span>
</Link>
</div>
);
|