MCPcopy Create free account
hub / github.com/tinyplex/tinybase / TestSortedTableView

Function TestSortedTableView

test/unit/core/ui-react/components.test.tsx:309–323  ·  view source on GitHub ↗
(
  props: SortedTableProps & {readonly cellPrefix?: string},
)

Source from the content-addressed store, hash-verified

307);
308
309const TestSortedTableView = (
310 props: SortedTableProps & {readonly cellPrefix?: string},
311) => (
312 <>
313 {props.tableId},{props.cellId}:
314 <SortedTableView
315 {...props}
316 rowComponent={TestRowView}
317 getRowComponentProps={useCallback(
318 () => ({cellPrefix: props.cellPrefix}),
319 [props.cellPrefix],
320 )}
321 />
322 </>
323);
324
325const TestRowView = (props: RowProps & {readonly cellPrefix?: string}) => (
326 <>

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…