The props accepted by Suspense.

interface SuspenseProps {
    children?: ReactNode;
    fallback?: ReactNode;
}

Properties

Properties

children?: ReactNode
fallback?: ReactNode

A fallback react tree to show when a Suspense child (like React.lazy) suspends