(
props: LinkedRowsProps & {readonly cellPrefix?: string},
)
| 262 | ); |
| 263 | |
| 264 | const TestLinkedRowsView = ( |
| 265 | props: LinkedRowsProps & {readonly cellPrefix?: string}, |
| 266 | ) => ( |
| 267 | <> |
| 268 | {props.firstRowId}: |
| 269 | <LinkedRowsView |
| 270 | {...props} |
| 271 | rowComponent={TestRowView} |
| 272 | getRowComponentProps={(_rowId: Id) => ({ |
| 273 | cellPrefix: props.cellPrefix, |
| 274 | })} |
| 275 | /> |
| 276 | </> |
| 277 | ); |
| 278 | |
| 279 | const TestResultTableView = ( |
| 280 | props: ResultTableProps & {readonly cellPrefix?: string}, |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…