({
cellId,
descending,
offset,
limit,
...props
}: SortedTableProps)
| 6 | import {useSortedRowIds} from './hooks.ts'; |
| 7 | |
| 8 | export const SortedTableView: typeof SortedTableViewDecl = ({ |
| 9 | cellId, |
| 10 | descending, |
| 11 | offset, |
| 12 | limit, |
| 13 | ...props |
| 14 | }: SortedTableProps): any => |
| 15 | tableView( |
| 16 | props, |
| 17 | useSortedRowIds( |
| 18 | props.tableId, |
| 19 | cellId, |
| 20 | descending, |
| 21 | offset, |
| 22 | limit, |
| 23 | props.store, |
| 24 | ), |
| 25 | ); |
nothing calls this directly
no test coverage detected
searching dependent graphs…