schema-components - v3.7.0
    Preparing search index...

    Interface SchemaErrorBoundaryProps

    Props accepted by SchemaErrorBoundary.

    interface SchemaErrorBoundaryProps {
        fallback: (error: Error, reset: () => void) => ReactNode;
        children: ReactNode;
    }
    Index

    Properties

    Properties

    fallback: (error: Error, reset: () => void) => ReactNode

    Called with the caught error. Returns fallback ReactNode to render.

    children: ReactNode