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

Function ValueView

docs/pseudo.esm.sh/tinybase@9.0.0/ui-solid/index.js:1638–1651  ·  view source on GitHub ↗
(props)

Source from the content-addressed store, hash-verified

1636 return memo(content);
1637};
1638var ValueView = (props) => {
1639 const value = useValue(
1640 () => props.valueId,
1641 () => props.store
1642 );
1643 return memo(
1644 () => wrap(
1645 EMPTY_STRING + (getValue(value) ?? EMPTY_STRING),
1646 void 0,
1647 props.debugIds,
1648 props.valueId
1649 )
1650 );
1651};
1652var ValuesView = (props) => {
1653 const valueIds = useValueIds(() => props.store);
1654 const content = () => {

Callers

nothing calls this directly

Calls 3

useValueFunction · 0.70
wrapFunction · 0.70
getValueFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…