Eric Whale

Add notfound page

1 +import { Link } from "react-router-dom";
2 +
3 +function Notfound() {
4 + return (
5 + <>
6 + <h1>404: Page Not Found</h1>
7 + <h2>
8 + <Link to="/">back to home</Link>
9 + </h2>
10 + </>
11 + );
12 +}
13 +
14 +export default Notfound;