mantine-react-table
Version:
A fully featured Mantine implementation of TanStack React Table V8, written from the ground up in TypeScript.
13 lines (12 loc) • 317 B
TypeScript
import { FC } from 'react';
import type { MRT_Header, MRT_TableInstance } from '..';
export declare const commonListItemStyles: {
display: string;
alignItems: string;
};
interface Props {
header: MRT_Header;
table: MRT_TableInstance;
}
export declare const MRT_ColumnActionMenu: FC<Props>;
export {};