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

Function TestRowView

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

Source from the content-addressed store, hash-verified

159);
160
161const TestRowView = (props: RowProps & {readonly cellPrefix?: string}) => (
162 <>
163 {props.rowId}:
164 <RowView
165 {...props}
166 cellComponent={TestCellView}
167 getCellComponentProps={(_cellId: Id) => ({
168 cellPrefix: props.cellPrefix,
169 })}
170 />
171 </>
172);
173
174const TestCellView = (props: CellProps & {readonly cellPrefix?: string}) => (
175 <>

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…