"use client"; import type { FC, PropsWithChildren } from "react"; import { ErrorBoundary } from "react-error-boundary"; export const RootErrorBoundary: FC = ({ children }) => { return ( (

Error

{error.message}

)} > {children}
); };