material-react-table
Version:
A fully featured Material UI V5 implementation of TanStack React Table V8, written from the ground up in TypeScript.
12 lines (11 loc) • 360 B
TypeScript
import { FC, MouseEvent } from 'react';
import type { MRT_Row, MRT_TableInstance } from '..';
interface Props {
anchorEl: HTMLElement | null;
handleEdit: (event: MouseEvent) => void;
row: MRT_Row;
setAnchorEl: (anchorEl: HTMLElement | null) => void;
table: MRT_TableInstance;
}
export declare const MRT_RowActionMenu: FC<Props>;
export {};