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

Function content

src/ui-solid/RowView.tsx:18–35  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

16 () => props.store,
17 );
18 const content = () => {
19 const Cell = props.cellComponent ?? CellView;
20 return wrap(
21 arrayMap(getValue(cellIds) as Id[], (cellId: Id) => (
22 <Cell
23 {...getProps(props.getCellComponentProps, cellId)}
24 tableId={props.tableId}
25 rowId={props.rowId}
26 cellId={cellId}
27 store={props.store}
28 debugIds={props.debugIds}
29 />
30 )),
31 props.separator,
32 props.debugIds,
33 props.rowId,
34 );
35 };
36 return <>{content()}</>;
37};

Callers 2

RowViewFunction · 0.70
setContentFunction · 0.50

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…