MCPcopy Index your code
hub / github.com/tinyplex/tinybase / SortedTableView

Function SortedTableView

src/ui-react/SortedTableView.tsx:8–25  ·  view source on GitHub ↗
({
  cellId,
  descending,
  offset,
  limit,
  ...props
}: SortedTableProps)

Source from the content-addressed store, hash-verified

6import {useSortedRowIds} from './hooks.ts';
7
8export 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 );

Callers

nothing calls this directly

Calls 2

tableViewFunction · 0.90
useSortedRowIdsFunction · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…