Interface VirtualItem

An item rendered by the useVirtualizer hook.

interface VirtualItem {
    index: number;
    ref: RefObject<Element>;
}

Properties

Properties

index: number

An index of an item.

ref: RefObject<Element>

A ref that must be added to an element associated with the item.