wikipedia-game-solver/apps/website/app/[locale]/not-found.tsx

11 lines
245 B
TypeScript
Raw Permalink Normal View History

2024-07-31 15:46:01 +02:00
import { ErrorNotFound } from "@repo/ui/Errors/ErrorNotFound"
2024-07-24 12:35:33 +02:00
/**
* Note that `app/[locale]/[...rest]/page.tsx` is necessary for this page to render.
*/
const NotFound: React.FC = () => {
2024-07-31 15:46:01 +02:00
return <ErrorNotFound />
2024-07-24 12:35:33 +02:00
}
export default NotFound