MCPcopy Create free account
hub / github.com/tinyplex/tinybase / content

Function content

src/ui-solid/common/index.tsx:43–60  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

41 rowIds: MaybeAccessor<Ids>,
42): JSXElement => {
43 const content = () => {
44 const Row = props.rowComponent ?? RowView;
45 return wrap(
46 arrayMap(getValue(rowIds), (rowId) => (
47 <Row
48 {...getProps(props.getRowComponentProps, rowId)}
49 tableId={props.tableId}
50 rowId={rowId}
51 customCellIds={props.customCellIds}
52 store={props.store}
53 debugIds={props.debugIds}
54 />
55 )),
56 props.separator,
57 props.debugIds,
58 props.tableId,
59 );
60 };
61 return <>{content()}</>;
62};
63

Callers 4

tableViewFunction · 0.70
resultTableViewFunction · 0.70
useComponentPerRowFunction · 0.70
getUseCheckpointViewFunction · 0.70

Calls 6

wrapFunction · 0.90
arrayMapFunction · 0.90
getValueFunction · 0.90
getPropsFunction · 0.90
getCheckpointsFunction · 0.50

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…