@mui/x-data-grid
Version:
The Community plan edition of the Data Grid components (MUI X).
9 lines (8 loc) • 305 B
TypeScript
import * as React from 'react';
type Props = {
/** The number of rows */
rowsLength: number;
};
declare function GridVirtualScrollerFiller({ rowsLength }: Props): React.JSX.Element | null;
declare const Memoized: typeof GridVirtualScrollerFiller;
export { Memoized as GridVirtualScrollerFiller };