React Virtuoso
React components for efficiently rendering large lists, grids, and tables with virtualization.
| Component | Purpose |
|---|---|
Virtuoso | Flat lists |
GroupedVirtuoso | Groups of items with sticky group headers |
VirtuosoGrid | Same-sized items in a responsive grid layout |
TableVirtuoso | Tables with virtualized rows |
Features
Section titled “Features”- Variable item sizes - handles items with different heights automatically, no manual measurement needed
- Dynamic size changes - observes item size changes via ResizeObserver and readjusts automatically
- Responsive container sizing - adapts to parent/viewport size changes, safe for flexbox layouts
- Bi-directional endless scrolling - supports
startReachedandendReachedcallbacks for loading data on demand - Press to load more - append or prepend items while retaining scroll position
- Initial scroll position - start from any location, skipping initial rendering of earlier items
- Customizable markup - custom Header, Footer, Scroller, and item wrapper components
- UI library integration - works with shadcn/ui, MUI, Mantine, and other component libraries
- Drag-and-drop support - integrates with drag-and-drop libraries through custom components
Installation
Section titled “Installation”bashQuick Start
Section titled “Quick Start”Virtuoso
Section titled “Virtuoso”Add the Virtuoso Component to your React project. The bare minimum it needs is a height for its container (either explicitly set, or adjusted through a parent flexbox), the number of items to display, and a callback to render the item content.
import { Virtuoso } from 'react-virtuoso'
export default function App() {
return <Virtuoso style={{ height: '100%' }} totalCount={200} itemContent={(index) => <div>Item {index}</div>} />
}GroupedVirtuoso
Section titled “GroupedVirtuoso”The GroupedVirtuoso component is similar to the “flat” Virtuoso, with the following differences:
- Instead of
totalCount, the Component acceptsgroupedCounts: number[], which specifies the amount of items in each group. For example, passing[20, 30]will render two groups with 20 and 30 items each; - In addition the
itemrender prop, the Component requires an additionalgrouprender prop, which renders the group header. Thegroupcallback receives the zero-based group index as a parameter; - The
itemContentrender prop gets called with an additional second parameter,groupIndex: number.
import { GroupedVirtuoso } from 'react-virtuoso'
const groupCounts = []
for (let index = 0; index < 1000; index++) {
groupCounts.push(10)
}
export default function App() {
return (
<GroupedVirtuoso
style={{ height: '100%' }}
groupCounts={groupCounts}
groupContent={(index) => {
return (
// add background to the element to avoid seeing the items below it
<div>
Group {index * 10} – {index * 10 + 10}
</div>
)
}}
itemContent={(index, groupIndex) => {
return (
<div>
Item {groupIndex}.{index}
</div>
)
}}
/>
)
}Check the grouped numbers, grouped by first letter and groups with load on demand examples.
TableVirtuoso
Section titled “TableVirtuoso”The TableVirtuoso component works like the Virtuoso one, but with HTML tables. It supports window scrolling, sticky headers, and fixed columns.
import { TableVirtuoso } from 'react-virtuoso'
export default function App() {
return (
<TableVirtuoso
style={{ height: '100%' }}
data={Array.from({ length: 100 }, (_, index) => ({
name: `User ${index}`,
description: `${index} description`,
}))}
itemContent={(index, user) => (
<>
<td style={{ width: 150 }}>{user.name}</td>
<td>{user.description}</td>
</>
)}
/>
)
}VirtuosoGrid
Section titled “VirtuosoGrid”The VirtuosoGrid component displays same sized items in multiple columns.
The layout and item sizing is controlled CSS class properties or styled containers,
which allows you to use media queries, min-width, percentage, etc.
import { VirtuosoGrid, VirtuosoGridProps } from 'react-virtuoso'
import { forwardRef } from 'react'
// Ensure that the component definitions are not declared inline in the component function,
// Otherwise the grid will remount with each render due to new component instances.
const gridComponents: VirtuosoGridProps<undefined, undefined>['components'] = {
List: forwardRef(({ style, children, ...props }, ref) => (
<div
ref={ref}
{...props}
style={{
display: 'flex',
flexWrap: 'wrap',
...style,
}}
>
{children}
</div>
)),
Item: ({ children, ...props }) => (
<div
{...props}
style={{
padding: '0.5rem',
width: '33%',
display: 'flex',
flex: 'none',
alignContent: 'stretch',
boxSizing: 'border-box',
}}
>
{children}
</div>
),
}
const ItemWrapper = ({ children, ...props }) => (
<div
{...props}
style={{
display: 'flex',
flex: 1,
textAlign: 'center',
padding: '1rem 1rem',
border: '1px solid gray',
whiteSpace: 'nowrap',
}}
>
{children}
</div>
)
export default function App() {
return (
<>
<VirtuosoGrid
style={{ height: '100%' }}
totalCount={1000}
components={gridComponents}
itemContent={(index) => <ItemWrapper>Item {index}</ItemWrapper>}
/>
<style>{`html, body, #root { margin: 0; padding: 0 }`}</style>
</>
)
}Performance
Section titled “Performance”Several factors affect the component’s performance.
The first and most important one is the size of the visible area.
Redrawing more items takes more time and reduces the frame rate.
To see if this affects you, reduce the component width or height;
Set the style property to something like {{width: '200px'}}.
Next, if the items are complex or slow to render, use React.memo for the itemContent contents.
jsxYou can experiment with the increaseViewportBy property that specifies
how much more to render in addition to the viewport’s visible height.
For example, if the component is 100px tall, setting the increaseViewportBy
to 150 will cause the list to render at least 250px of content.
Loading images and displaying complex components while scrolling can cause jank.
To fix that, you can hook to the isScrolling callback and replace
the problematic content in the item with a simplified one.
Check the scroll handling example for a possible implementation.
Caveats
Section titled “Caveats”Setting CSS margins to the content or the item elements is the Kryptonite of Virtuoso’s content measuring mechanism - the contentRect measurement does not include them.
If this affects you, the total scroll height will be miscalculated, and the user won’t be able to scroll all the way down to the list.
To avoid that, if you are putting paragraphs and headings inside the item, make sure that the top/bottom elements’ margins do not protrude outside of the item container.
jsxA few more common problems are present in the troubleshooting section.