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

Function ResultTableInHtmlTable

src/ui-react-dom/ResultTableInHtmlTable.tsx:15–37  ·  view source on GitHub ↗
({
  queryId,
  queries,
  customCells,
  extraCellsBefore,
  extraCellsAfter,
  ...props
}: ResultTableInHtmlTableProps & HtmlTableProps)

Source from the content-addressed store, hash-verified

13} from './common/hooks.tsx';
14
15export const ResultTableInHtmlTable: typeof ResultTableInHtmlTableDecl = ({
16 queryId,
17 queries,
18 customCells,
19 extraCellsBefore,
20 extraCellsAfter,
21 ...props
22}: ResultTableInHtmlTableProps & HtmlTableProps): any => (
23 <HtmlTable
24 {...props}
25 params={useParams(
26 useCells(
27 useResultTableCellIds(queryId, queries),
28 customCells,
29 ResultCellView,
30 ),
31 useQueriesCellComponentProps(queries, queryId),
32 useResultRowIds(queryId, queries),
33 extraCellsBefore,
34 extraCellsAfter,
35 )}
36 />
37);

Callers

nothing calls this directly

Calls 5

useParamsFunction · 0.90
useCellsFunction · 0.90
useResultTableCellIdsFunction · 0.90
useResultRowIdsFunction · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…