From c25beede40922163693314225be23acc09765435 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Tue, 30 Sep 2025 08:22:36 +0000 Subject: [PATCH] Rename component in 404 page cgen-b6f66294dad2430ebb29f257c46cf688 --- client/pages/404.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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;