@mui/x-data-grid
Version:
The Community plan edition of the Data Grid components (MUI X).
10 lines • 302 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 };