import React from 'react'; import { Link } from 'react-router-dom'; const NotFound = () => { return (

404

This page could not be found.

Back to Home
); }; export default NotFound;