Skip to content

React Virtuoso

npm version npm downloads license TypeScript

React components for efficiently rendering large lists, grids, and tables with virtualization.

ComponentPurpose
VirtuosoFlat lists
GroupedVirtuosoGroups of items with sticky group headers
VirtuosoGridSame-sized items in a responsive grid layout
TableVirtuosoTables with virtualized rows
  • 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 startReached and endReached callbacks 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
bash

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>} />
}

The GroupedVirtuoso component is similar to the “flat” Virtuoso, with the following differences:

  • Instead of totalCount, the Component accepts groupedCounts: 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 item render prop, the Component requires an additional group render prop, which renders the group header. The group callback receives the zero-based group index as a parameter;
  • The itemContent render 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} &ndash; {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.

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>
        </>
      )}
    />
  )
}

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>
    </>
  )
}

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.

jsx

You 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.

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.

jsx

A few more common problems are present in the troubleshooting section.