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

Function ContextStoreChild

test/unit/core/ui-react/components.test.tsx:429–444  ·  view source on GitHub ↗
({
  storeId,
  mode,
}: {
  readonly storeId?: string;
  readonly mode: string;
})

Source from the content-addressed store, hash-verified

427});
428
429const ContextStoreChild = ({
430 storeId,
431 mode,
432}: {
433 readonly storeId?: string;
434 readonly mode: string;
435}) =>
436 mode == 'tables' ? (
437 <ContextTablesChild storeId={storeId} />
438 ) : mode == 'table' ? (
439 <ContextTableChild storeId={storeId} />
440 ) : mode == 'row' ? (
441 <ContextRowChild storeId={storeId} />
442 ) : (
443 <ContextCellChild storeId={storeId} />
444 );
445
446const ContextTablesChild = ({storeId}: {readonly storeId?: string}) => (
447 <>

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…