UNPKG

chop-logic-components

Version:

React UI components library for Chop Logic project

14 lines (13 loc) 465 B
import { default as React } from 'react'; import { ChopLogicGridColumn, ChopLogicGridItem, RenderDataItemCallback } from '../../../models'; type Props = { data: ChopLogicGridItem[]; columns: ChopLogicGridColumn[]; selectedIds: string[]; selectRowById: (id: string) => void; deselectRowById: (id: string) => void; renderDataItem?: RenderDataItemCallback; selectable: boolean; }; export declare const GridBody: React.FC<Props>; export {};