({
valueId,
store,
debugIds,
}: ValueProps)
| 7 | import {useValue} from './hooks.ts'; |
| 8 | |
| 9 | export const ValueView: typeof ValueViewDecl = ({ |
| 10 | valueId, |
| 11 | store, |
| 12 | debugIds, |
| 13 | }: ValueProps): any => ( |
| 14 | <Wrap debugIds={debugIds} id={valueId}> |
| 15 | {EMPTY_STRING + (useValue(valueId, store) ?? EMPTY_STRING)} |
| 16 | </Wrap> |
| 17 | ); |
nothing calls this directly
no test coverage detected
searching dependent graphs…