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

Function TestTableView

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

Source from the content-addressed store, hash-verified

293);
294
295const TestTableView = (props: TableProps & {readonly cellPrefix?: string}) => (
296 <>
297 {props.tableId}:
298 <TableView
299 {...props}
300 rowComponent={TestRowView}
301 getRowComponentProps={useCallback(
302 () => ({cellPrefix: props.cellPrefix}),
303 [props.cellPrefix],
304 )}
305 />
306 </>
307);
308
309const TestSortedTableView = (
310 props: SortedTableProps & {readonly cellPrefix?: string},

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…