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