interface SuspenseProps {
    onFallback?: (() => void);
    onPending?: (() => void);
    onResolve?: (() => void);
    suspensible?: boolean;
    timeout?: string | number;
}

Properties

onFallback?: (() => void)
onPending?: (() => void)
onResolve?: (() => void)
suspensible?: boolean

Allow suspense to be captured by parent suspense

false
timeout?: string | number