interface ErrorBoundaryProps {
    children: ReactNode;
    fallback?: ReactNode;
    fallbackWithError?: ((error: Error) => ReactNode);
    scope?: string;
}

Properties

children: ReactNode
fallback?: ReactNode
fallbackWithError?: ((error: Error) => ReactNode)
scope?: string