(props)
| 1593 | ) |
| 1594 | ); |
| 1595 | var SortedTableView = (props) => tableView( |
| 1596 | props, |
| 1597 | useSortedRowIds( |
| 1598 | () => props.tableId, |
| 1599 | () => props.cellId, |
| 1600 | () => props.descending, |
| 1601 | () => props.offset, |
| 1602 | () => props.limit, |
| 1603 | () => props.store |
| 1604 | ) |
| 1605 | ); |
| 1606 | var TableView = (props) => tableView( |
| 1607 | props, |
| 1608 | useRowIds( |
nothing calls this directly
no test coverage detected
searching dependent graphs…