UNPKG

fixed-react-data-grid-custom

Version:

Excel-like grid component built with React, with editors, keyboard navigation, copy & paste, and the like

7 lines (6 loc) 218 B
/// <reference types="react" /> export interface CellExpanderProps { expanded: boolean; onCellExpand(): void; } export default function CellExpander({ expanded, onCellExpand }: CellExpanderProps): JSX.Element;