MCPcopy
hub / github.com/Comcast/react-data-grid / GroupCellProps

Interface GroupCellProps

src/GroupCell.tsx:7–18  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5import type { CalculatedColumn, GroupRow } from './types';
6
7interface GroupCellProps<R, SR> {
8 id: string;
9 groupKey: unknown;
10 childRows: readonly R[];
11 toggleGroup: (expandedGroupId: unknown) => void;
12 isExpanded: boolean;
13 column: CalculatedColumn<R, SR>;
14 row: GroupRow<R>;
15 isCellSelected: boolean;
16 groupColumnIndex: number;
17 isGroupByColumn: boolean;
18}
19
20function GroupCell<R, SR>({
21 id,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected