mirror of
https://github.com/makeplane/plane.git
synced 2025-12-19 13:19:31 +01:00
18 lines
467 B
TypeScript
18 lines
467 B
TypeScript
"use client";
|
|
|
|
import NextError from "next/error";
|
|
|
|
export default function GlobalError() {
|
|
return (
|
|
<html>
|
|
<body>
|
|
{/* `NextError` is the default Next.js error page component. Its type
|
|
definition requires a `statusCode` prop. However, since the App Router
|
|
does not expose status codes for errors, we simply pass 0 to render a
|
|
generic error message. */}
|
|
<NextError statusCode={0} />
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|