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

Function TestLinkedRowsView

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

Source from the content-addressed store, hash-verified

191);
192
193const TestLinkedRowsView = (
194 props: LinkedRowsProps & {readonly cellPrefix?: string},
195) => (
196 <>
197 {props.firstRowId}:
198 <LinkedRowsView
199 {...props}
200 rowComponent={TestRowView}
201 getRowComponentProps={useCallback(
202 () => ({cellPrefix: props.cellPrefix}),
203 [props.cellPrefix],
204 )}
205 />
206 </>
207);
208
209const TestResultTableView = (
210 props: ResultTableProps & {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…