(
props: ResultRowProps & {readonly cellPrefix?: string},
)
| 239 | ); |
| 240 | |
| 241 | const 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 | |
| 257 | const TestResultCellView = ( |
| 258 | props: ResultCellProps & {readonly cellPrefix?: string}, |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…