UNPKG

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) 331 B
/// <reference types="react" /> import { CellContentProps } from './CellContent'; declare type CellValueProps<R> = Pick<CellContentProps<R>, 'rowIdx' | 'rowData' | 'column' | 'value' | 'isScrolling'>; export default function CellValue<R>({ rowIdx, rowData, column, value, isScrolling }: CellValueProps<R>): JSX.Element; export {};