notFound page added
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
import { Link } from "react-router-dom";
|
||||
function NotFound() {
|
||||
return (
|
||||
<div>
|
||||
<h1>404 — page introuvable</h1>
|
||||
<Link to="/">Retour à l'accueil</Link>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default NotFound;
|
||||
Reference in New Issue
Block a user