import type { FC } from "react"; import type { FallbackProps } from "react-error-boundary"; export const RootErrorFallback: FC = ({ error }) => { return (

Error

Something went wrong

{error.message}

); };