2
0
Files
cal/calcom/apps/web/app/global-error.tsx

18 lines
320 B
TypeScript
Raw Normal View History

2024-08-09 00:39:27 +02:00
"use client";
import { type NextPage } from "next";
import CustomError, { type DefaultErrorProps } from "./error";
export const GlobalError: NextPage<DefaultErrorProps> = (props) => {
return (
<html>
<body>
<CustomError {...props} />
</body>
</html>
);
};
export default GlobalError;