Docs

Virtual List

Virtual List allows you to render a long list of items inside a scrollable container without sacrificing performance.

Virtual List allows you to render a long list of items inside a scrollable container without sacrificing performance. Each item is rendered on the fly as the user scrolls the list.

To use this component, you need to assign it a set of data items and a renderer that’s used to render each individual data item. The height of an item is determined by its content and can change dynamically.

Open in a
new tab
<VirtualList items={people}>{personCardRenderer}</VirtualList>