ResultRowProps
ResultRowProps
props are used for components that refer to a single Row
in a query ResultTable
, such as the ResultRowView
component.
{
queryId: Id;
rowId: Id;
queries?: QueriesOrQueriesId;
resultCellComponent?: ComponentType<ResultCellProps>;
getResultCellComponentProps?: (cellId: Id) => ExtraProps;
separator?: ReactElement | string;
debugIds?: boolean;
}
Type | Description | |
---|---|---|
queryId | Id | The |
rowId | Id | The |
queries? | QueriesOrQueriesId | The |
resultCellComponent? | ComponentType<ResultCellProps> | A custom component for rendering each |
getResultCellComponentProps? | (cellId: Id) => ExtraProps | A function for generating extra props for each custom |
separator? | ReactElement | string | A component or string to separate each |
debugIds? | boolean | Whether the component should also render the |
Since
v2.0.0