interface SuspenseProps {
    children?: ReactNode;
    fallback: null | NonNullable<ReactNode>;
}

Properties

Properties

children?: ReactNode
fallback: null | NonNullable<ReactNode>

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