({ cellId, descending, offset, limit, ...props })
| 1644 | ); |
| 1645 | var ResultTableView = (props) => resultTableView(props, useResultRowIds(props.queryId, props.queries)); |
| 1646 | var SortedTableView = ({ cellId, descending, offset, limit, ...props }) => tableView( |
| 1647 | props, |
| 1648 | useSortedRowIds( |
| 1649 | props.tableId, |
| 1650 | cellId, |
| 1651 | descending, |
| 1652 | offset, |
| 1653 | limit, |
| 1654 | props.store |
| 1655 | ) |
| 1656 | ); |
| 1657 | var TableView = (props) => tableView(props, useRowIds(props.tableId, props.store)); |
| 1658 | var TablesView = ({ |
| 1659 | store, |
nothing calls this directly
no test coverage detected
searching dependent graphs…