({
queryId,
queries,
customCells,
extraCellsBefore,
extraCellsAfter,
...props
}: ResultTableInHtmlTableProps & HtmlTableProps)
| 13 | } from './common/hooks.tsx'; |
| 14 | |
| 15 | export 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 | ); |
nothing calls this directly
no test coverage detected
searching dependent graphs…