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

    Interface SchemaErrorBoundaryProps

    Props accepted by SchemaErrorBoundary.

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

    Properties

    Properties

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

    Called with the caught error and a reset callback that clears the error state so children can re-mount. Mirrors the React adapter's signature.

    children: Element