mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-11-05 21:11:31 +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
|