MCPcopy
hub / github.com/tinyplex/tinybase / CellView

Function CellView

src/ui-react/CellView.tsx:9–19  ·  view source on GitHub ↗
({
  tableId,
  rowId,
  cellId,
  store,
  debugIds,
}: CellProps)

Source from the content-addressed store, hash-verified

7import {useCell} from './hooks.ts';
8
9export const CellView: typeof CellViewDecl = ({
10 tableId,
11 rowId,
12 cellId,
13 store,
14 debugIds,
15}: CellProps): any => (
16 <Wrap debugIds={debugIds} id={cellId}>
17 {EMPTY_STRING + (useCell(tableId, rowId, cellId, store) ?? EMPTY_STRING)}
18 </Wrap>
19);

Callers

nothing calls this directly

Calls 1

useCellFunction · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…