UNPKG

chop-logic-components

Version:

React UI components library for Chop Logic project

11 lines (10 loc) 283 B
import { default as React } from 'react'; type Props = { rowId: string; isRowSelected: boolean; selectRowById: (id: string) => void; deselectRowById: (id: string) => void; disabled?: boolean; }; export declare const SelectGridRowCell: React.FC<Props>; export {};