"use client"; import { type NextPage } from "next"; import CustomError from "./error"; import type { ErrorProps } from "./error"; export const GlobalError: NextPage = (props) => { return ( ); }; export default GlobalError;