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

Function TestResultRowView

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

Source from the content-addressed store, hash-verified

307);
308
309const TestResultRowView = (
310 props: ResultRowProps & {readonly cellPrefix?: string},
311) => (
312 <>
313 {props.rowId}:
314 <ResultRowView
315 {...props}
316 resultCellComponent={TestResultCellView}
317 getResultCellComponentProps={(_cellId: Id) => ({
318 cellPrefix: props.cellPrefix,
319 })}
320 />
321 </>
322);
323
324const TestResultCellView = (
325 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…