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

Function content

src/ui-solid/TablesView.tsx:13–26  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

11export const TablesView = (props: TablesProps): JSXElement => {
12 const tableIds = useTableIds(() => props.store);
13 const content = () => {
14 const Table = props.tableComponent ?? TableView;
15 return wrap(
16 arrayMap(getValue(tableIds) as Id[], (tableId: Id) => (
17 <Table
18 {...getProps(props.getTableComponentProps, tableId)}
19 tableId={tableId}
20 store={props.store}
21 debugIds={props.debugIds}
22 />
23 )),
24 props.separator,
25 );
26 };
27 return <>{content()}</>;
28};

Callers 1

TablesViewFunction · 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…