- {virtualizer.virtualItems.map((virtualRow) => {
- const value = dataSource.view.get(virtualRow.index);
- // the position properties always change, so they are not part of the TableRow to avoid invalidating the memoized render always.
- // Also all row containers are renderd as part of same component to have 'less react' framework code in between*/}
- return (
-
- {itemRenderer(value, virtualRow.index, context)}
-
- );
- })}
-
-