Props that an implementation of VirtualInnerComponent must accept.

interface VirtualInnerProps {
    children: ReactNode;
    className: undefined | string;
    style: CSSProperties;
}

Properties

children: ReactNode

The visible child items rendered into the inner container div

className: undefined | string

The className to apply to the inner container div. Passed through from VirtualBaseProps.innerClassName

style: CSSProperties

Style to apply to the inner container div