ResultTableProps
ResultTableProps props are used for components that refer to a single query ResultTable, such as the ResultTableView component.
{
queryId: Id;
queries?: QueriesOrQueriesId;
resultRowComponent?: Component<ResultRowProps>;
getResultRowComponentProps?: (rowId: Id) => ExtraProps;
separator?: JSXElement | string;
debugIds?: boolean;
}| Type | Description | |
|---|---|---|
queryId | Id | The |
queries? | QueriesOrQueriesId | The |
resultRowComponent? | Component<ResultRowProps> | A custom component for rendering each |
getResultRowComponentProps? | (rowId: Id) => ExtraProps | A function for generating extra props for each custom |
separator? | JSXElement | string | A component or string to separate each |
debugIds? | boolean | Whether the component should also render the |
Since
v8.3.0