Rename component in 404 page

cgen-b6f66294dad2430ebb29f257c46cf688
This commit is contained in:
Builder.io 2025-09-30 08:22:36 +00:00
parent 3fb5541ffa
commit c25beede40

View file

@ -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;