fuck/frontend_service/app/routes/404.tsx
2025-12-03 18:21:00 +08:00

8 lines
No EOL
154 B
TypeScript

export default function NotFound(){
return (
<>
<h1>404</h1>
<p>The requested page could not be found.</p>
</>
)
}