( props: ResultTableInHtmlTableProps & HtmlTableProps, )
| 19 | } from './common/hooks.tsx'; |
| 20 | |
| 21 | export const ResultTableInHtmlTable: typeof ResultTableInHtmlTableDecl = ( |
| 22 | props: ResultTableInHtmlTableProps & HtmlTableProps, |
| 23 | ): JSXElement => |
| 24 | HtmlTable({ |
| 25 | ...props, |
| 26 | params: getParams( |
| 27 | useCells( |
| 28 | useResultTableCellIds( |
| 29 | () => props.queryId, |
| 30 | () => props.queries, |
| 31 | ), |
| 32 | () => props.customCells, |
| 33 | () => ResultCellView, |
| 34 | ), |
| 35 | getQueriesCellComponentProps(props.queries, props.queryId), |
| 36 | useResultRowIds( |
| 37 | () => props.queryId, |
| 38 | () => props.queries, |
| 39 | ), |
| 40 | props.extraCellsBefore, |
| 41 | props.extraCellsAfter, |
| 42 | ), |
| 43 | }); |
nothing calls this directly
no test coverage detected
searching dependent graphs…