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

Function TestRowView

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

Source from the content-addressed store, hash-verified

323);
324
325const TestRowView = (props: RowProps & {readonly cellPrefix?: string}) => (
326 <>
327 {props.rowId}:
328 <RowView
329 {...props}
330 cellComponent={TestCellView}
331 getCellComponentProps={useCallback(
332 () => ({cellPrefix: props.cellPrefix}),
333 [props.cellPrefix],
334 )}
335 />
336 </>
337);
338
339const TestCellView = (props: CellProps & {readonly cellPrefix?: string}) => (
340 <>

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…