RemoteRowProps
RemoteRowProps
props are used for components that refer to a single Relationship
in a Relationships
object, and where you want to render a remote Row
based on a local Row
, such as in the RemoteRowView
component.
{
relationshipId: Id;
localRowId: Id;
relationships?: RelationshipsOrRelationshipsId;
rowComponent?: ComponentType<RowProps>;
getRowComponentProps?: (rowId: Id) => ExtraProps;
debugIds?: boolean;
}
Type | Description | |
---|---|---|
relationshipId | Id | The |
localRowId | Id | |
relationships? | RelationshipsOrRelationshipsId | The |
rowComponent? | ComponentType<RowProps> | A component for rendering each (remote, local, or linked) |
getRowComponentProps? | (rowId: Id) => ExtraProps | A function for generating extra props for each |
debugIds? | boolean | Whether the component should also render the |
Since
v1.0.0