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

Function TestSortedTableView

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

Source from the content-addressed store, hash-verified

144);
145
146const TestSortedTableView = (
147 props: SortedTableProps & {readonly cellPrefix?: string},
148) => (
149 <>
150 {props.tableId},{props.cellId}:
151 <SortedTableView
152 {...props}
153 rowComponent={TestRowView}
154 getRowComponentProps={(_rowId: Id) => ({
155 cellPrefix: props.cellPrefix,
156 })}
157 />
158 </>
159);
160
161const TestRowView = (props: RowProps & {readonly cellPrefix?: string}) => (
162 <>

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…