import { ReactNode } from "react"; import { ErrorBoundary } from "react-error-boundary"; function fallbackRender({ error, resetErrorBoundary }) { return (

Something went wrong:

{error.message}
); } export default function AppErrorBoundary({ children, }: { children: ReactNode; }) { return ( {children} ); }