import { useNavigate } from "react-router-dom"; const Error404: React.FC = () => { const navigate = useNavigate(); const handleGoBack = () => { navigate(-1); }; return (
Page Not Found
Sorry, the page you are looking for does not exist.