({
store,
valueComponent: Value = ValueView,
getValueComponentProps,
separator,
debugIds,
}: ValuesProps)
| 9 | import {ValueView} from './ValueView.tsx'; |
| 10 | |
| 11 | export const ValuesView: typeof ValuesViewDecl = ({ |
| 12 | store, |
| 13 | valueComponent: Value = ValueView, |
| 14 | getValueComponentProps, |
| 15 | separator, |
| 16 | debugIds, |
| 17 | }: ValuesProps): any => ( |
| 18 | <Wrap separator={separator}> |
| 19 | {arrayMap(useValueIds(store), (valueId) => ( |
| 20 | <Value |
| 21 | key={valueId} |
| 22 | {...getProps(getValueComponentProps, valueId)} |
| 23 | valueId={valueId} |
| 24 | store={store} |
| 25 | debugIds={debugIds} |
| 26 | /> |
| 27 | ))} |
| 28 | </Wrap> |
| 29 | ); |
nothing calls this directly
no test coverage detected
searching dependent graphs…