ValuesProps
ValuesProps props are used for components that refer to all the Values in a Store, such as the ValuesView component.
{
store?: StoreOrStoreId;
valueComponent?: Component<ValueProps>;
getValueComponentProps?: (valueId: Id) => ExtraProps;
separator?: JSXElement | string;
debugIds?: boolean;
}| Type | Description | |
|---|---|---|
store? | StoreOrStoreId | The |
valueComponent? | Component<ValueProps> | A custom component for rendering each |
getValueComponentProps? | (valueId: 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