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

Function ResultCellView

src/ui-solid/ResultCellView.tsx:9–26  ·  view source on GitHub ↗
(props: ResultCellProps)

Source from the content-addressed store, hash-verified

7import {useResultCell} from './primitives.ts';
8
9export const ResultCellView = (props: ResultCellProps): JSXElement => {
10 const resultCell = useResultCell(
11 () => props.queryId,
12 () => props.rowId,
13 () => props.cellId,
14 () => props.queries,
15 );
16 return (
17 <>
18 {wrap(
19 EMPTY_STRING + (getValue(resultCell) ?? EMPTY_STRING),
20 undefined,
21 props.debugIds,
22 props.cellId,
23 )}
24 </>
25 );
26};

Callers

nothing calls this directly

Calls 3

useResultCellFunction · 0.90
wrapFunction · 0.90
getValueFunction · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…