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

Function content

src/ui-solid/ResultRowView.tsx:17–34  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

15 () => props.queries,
16 );
17 const content = () => {
18 const ResultCell = props.resultCellComponent ?? ResultCellView;
19 return wrap(
20 arrayMap(getValue(resultCellIds) as Id[], (cellId: Id) => (
21 <ResultCell
22 {...getProps(props.getResultCellComponentProps, cellId)}
23 queryId={props.queryId}
24 rowId={props.rowId}
25 cellId={cellId}
26 queries={props.queries}
27 debugIds={props.debugIds}
28 />
29 )),
30 props.separator,
31 props.debugIds,
32 props.rowId,
33 );
34 };
35 return <>{content()}</>;
36};

Callers 1

ResultRowViewFunction · 0.70

Calls 4

wrapFunction · 0.90
arrayMapFunction · 0.90
getValueFunction · 0.90
getPropsFunction · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…