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

Function TestResultRowView

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

Source from the content-addressed store, hash-verified

239);
240
241const TestResultRowView = (
242 props: ResultRowProps & {readonly cellPrefix?: string},
243) => (
244 <>
245 {props.rowId}:
246 <ResultRowView
247 {...props}
248 resultCellComponent={TestResultCellView}
249 getResultCellComponentProps={useCallback(
250 () => ({cellPrefix: props.cellPrefix}),
251 [props.cellPrefix],
252 )}
253 />
254 </>
255);
256
257const TestResultCellView = (
258 props: ResultCellProps & {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…