( props: ResultSortedTableProps, )
| 5 | import {useResultSortedRowIds} from './primitives.ts'; |
| 6 | |
| 7 | export const ResultSortedTableView = ( |
| 8 | props: ResultSortedTableProps, |
| 9 | ): JSXElement => |
| 10 | resultTableView( |
| 11 | props, |
| 12 | useResultSortedRowIds( |
| 13 | () => props.queryId, |
| 14 | () => props.cellId, |
| 15 | () => props.descending, |
| 16 | () => props.offset, |
| 17 | () => props.limit, |
| 18 | () => props.queries, |
| 19 | ), |
| 20 | ); |
nothing calls this directly
no test coverage detected
searching dependent graphs…