mantine-react-table
Version:
A fully featured Mantine implementation of TanStack React Table V8, written from the ground up in TypeScript.
10 lines (9 loc) • 408 B
TypeScript
import { MouseEvent } from 'react';
import type { MRT_Row, MRT_TableInstance } from '..';
interface Props<TData extends Record<string, any> = {}> {
handleEdit: (event: MouseEvent) => void;
row: MRT_Row<TData>;
table: MRT_TableInstance<TData>;
}
export declare const MRT_RowActionMenu: <TData extends Record<string, any> = {}>({ handleEdit, row, table, }: Props<TData>) => JSX.Element;
export {};