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