MCPcopy Index your code
hub / github.com/tinyplex/tinybase / ResultCellView

Function ResultCellView

src/ui-react/ResultCellView.tsx:9–20  ·  view source on GitHub ↗
({
  queryId,
  rowId,
  cellId,
  queries,
  debugIds,
}: ResultCellProps)

Source from the content-addressed store, hash-verified

7import {useResultCell} from './hooks.ts';
8
9export const ResultCellView: typeof ResultCellViewDecl = ({
10 queryId,
11 rowId,
12 cellId,
13 queries,
14 debugIds,
15}: ResultCellProps): any => (
16 <Wrap debugIds={debugIds} id={cellId}>
17 {EMPTY_STRING +
18 (useResultCell(queryId, rowId, cellId, queries) ?? EMPTY_STRING)}
19 </Wrap>
20);

Callers

nothing calls this directly

Calls 1

useResultCellFunction · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…