import React from "react"; import { Link } from "react-router-dom"; const NotFound: React.FC = () => { return (

We can't find the page you're looking for!

Go to Home Page

or go to one of these

Browse Items Community Forum FAQ
); }; export default NotFound;