material-react-table
Version:
A fully featured Material UI V5 implementation of TanStack React Table V8, written from the ground up in TypeScript.
14 lines (13 loc) • 427 B
TypeScript
import React, { FC, RefObject } from 'react';
import type { MRT_Cell, MRT_TableInstance } from '..';
interface Props {
cell: MRT_Cell;
enableHover?: boolean;
numRows: number;
rowIndex: number;
rowRef: RefObject<HTMLTableRowElement>;
table: MRT_TableInstance;
}
export declare const MRT_TableBodyCell: FC<Props>;
export declare const Memo_MRT_TableBodyCell: React.NamedExoticComponent<Props>;
export {};