chop-logic-components
Version:
React UI components library for Chop Logic project
13 lines (12 loc) • 342 B
TypeScript
import { default as React } from 'react';
type Props = {
rowId: string;
selectedIds: string[];
selectRowById: (id: string) => void;
deselectRowById: (id: string) => void;
selectable: boolean;
values: (string | React.ReactElement)[];
disabled?: boolean;
};
export declare const GridRow: React.FC<Props>;
export {};