mantine-react-table
Version:
A fully featured Mantine implementation of TanStack React Table V8, written from the ground up in TypeScript.
12 lines (11 loc) • 368 B
TypeScript
import React, { FC } from 'react';
import type { VirtualItem } from '@tanstack/react-virtual';
import type { MRT_Row, MRT_TableInstance } from '..';
interface Props {
parentRowRef: React.RefObject<HTMLTableRowElement>;
row: MRT_Row;
table: MRT_TableInstance;
virtualRow?: VirtualItem;
}
export declare const MRT_TableDetailPanel: FC<Props>;
export {};