diff --git a/client/pages/404.tsx b/client/pages/404.tsx index 1115b7c6..bfc1f491 100644 --- a/client/pages/404.tsx +++ b/client/pages/404.tsx @@ -38,7 +38,7 @@ interface GameState { gameWon: boolean; } -const NotFound = () => { +const FourOhFourPage = () => { const navigate = useNavigate(); const location = useLocation(); const [timeSpent, setTimeSpent] = useState(0); @@ -453,4 +453,4 @@ const NotFound = () => { ); }; -export default NotFound; +export default FourOhFourPage;