wikipedia-game-solver/apps/website/app/[locale]/[...rest]/page.tsx

8 lines
134 B
TypeScript
Raw Normal View History

2024-07-24 12:35:33 +02:00
import { notFound } from "next/navigation"
const CatchAllPage: React.FC = () => {
return notFound()
}
export default CatchAllPage