MCPcopy Create free account
hub / github.com/tinyplex/tinybase / TestValuesView

Function TestValuesView

test/unit/core/ui-react/components.test.tsx:347–358  ·  view source on GitHub ↗
(
  props: ValuesProps & {readonly valuePrefix?: string},
)

Source from the content-addressed store, hash-verified

345);
346
347const TestValuesView = (
348 props: ValuesProps & {readonly valuePrefix?: string},
349) => (
350 <ValuesView
351 {...props}
352 valueComponent={TestValueView}
353 getValueComponentProps={useCallback(
354 () => ({valuePrefix: props.valuePrefix}),
355 [props.valuePrefix],
356 )}
357 />
358);
359
360const TestValueView = (props: ValueProps & {readonly valuePrefix?: string}) => (
361 <>

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…