mirror of
https://github.com/theoludwig/theoludwig.git
synced 2025-01-23 13:19:36 +01:00
11 lines
245 B
TypeScript
11 lines
245 B
TypeScript
import { ErrorNotFound } from "@repo/ui/Errors/ErrorNotFound"
|
|
|
|
/**
|
|
* Note that `app/[locale]/[...rest]/page.tsx` is necessary for this page to render.
|
|
*/
|
|
const NotFound: React.FC = () => {
|
|
return <ErrorNotFound />
|
|
}
|
|
|
|
export default NotFound
|