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

11 lines
280 B
TypeScript
Raw Normal View History

2024-07-24 12:35:33 +02:00
"use client"
2024-07-31 15:46:01 +02:00
import type { ErrorServerProps } from "@repo/ui/Errors/ErrorServer"
import { ErrorServer } from "@repo/ui/Errors/ErrorServer"
2024-07-24 12:35:33 +02:00
2024-07-31 15:46:01 +02:00
const ErrorBoundaryPage: React.FC<ErrorServerProps> = (props) => {
return <ErrorServer {...props} />
2024-07-24 12:35:33 +02:00
}
export default ErrorBoundaryPage