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