(
props: ResultTableProps & {readonly cellPrefix?: string},
)
| 277 | ); |
| 278 | |
| 279 | const TestResultTableView = ( |
| 280 | props: ResultTableProps & {readonly cellPrefix?: string}, |
| 281 | ) => ( |
| 282 | <> |
| 283 | {props.queryId}: |
| 284 | <ResultTableView |
| 285 | {...props} |
| 286 | resultRowComponent={TestResultRowView} |
| 287 | getResultRowComponentProps={(_rowId: Id) => ({ |
| 288 | cellPrefix: props.cellPrefix, |
| 289 | })} |
| 290 | /> |
| 291 | </> |
| 292 | ); |
| 293 | |
| 294 | const TestResultSortedTableView = ( |
| 295 | props: ResultSortedTableProps & {readonly cellPrefix?: string}, |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…