fixed-react-data-grid-custom
Version:
Excel-like grid component built with React, with editors, keyboard navigation, copy & paste, and the like
6 lines (5 loc) • 299 B
TypeScript
/// <reference types="react" />
import { Props as CellProps } from '../Cell';
declare type CellActionsProps<R> = Pick<CellProps<R>, 'cellMetaData' | 'column' | 'rowData'>;
export default function CellActions<R>({ cellMetaData, column, rowData }: CellActionsProps<R>): JSX.Element | null;
export {};