(props: SortedTableProps)
| 5 | import {useSortedRowIds} from './primitives.ts'; |
| 6 | |
| 7 | export const SortedTableView = (props: SortedTableProps): JSXElement => |
| 8 | tableView( |
| 9 | props, |
| 10 | useSortedRowIds( |
| 11 | () => props.tableId, |
| 12 | () => props.cellId, |
| 13 | () => props.descending, |
| 14 | () => props.offset, |
| 15 | () => props.limit, |
| 16 | () => props.store, |
| 17 | ), |
| 18 | ); |
nothing calls this directly
no test coverage detected
searching dependent graphs…