material-react-table
Version:
A fully featured Material UI V5 implementation of TanStack React Table V8, written from the ground up in TypeScript.
13 lines (12 loc) • 362 B
TypeScript
import React, { FC } from 'react';
import type { MRT_Row, MRT_TableInstance } from '..';
interface Props {
numRows: number;
row: MRT_Row;
rowIndex: number;
table: MRT_TableInstance;
virtualRow?: any;
}
export declare const MRT_TableBodyRow: FC<Props>;
export declare const Memo_MRT_TableBodyRow: React.NamedExoticComponent<Props>;
export {};