(
props: ResultSortedTableProps & {readonly cellPrefix?: string},
)
| 292 | ); |
| 293 | |
| 294 | const TestResultSortedTableView = ( |
| 295 | props: ResultSortedTableProps & {readonly cellPrefix?: string}, |
| 296 | ) => ( |
| 297 | <> |
| 298 | {props.queryId},{props.cellId}: |
| 299 | <ResultSortedTableView |
| 300 | {...props} |
| 301 | resultRowComponent={TestResultRowView} |
| 302 | getResultRowComponentProps={(_rowId: Id) => ({ |
| 303 | cellPrefix: props.cellPrefix, |
| 304 | })} |
| 305 | /> |
| 306 | </> |
| 307 | ); |
| 308 | |
| 309 | const TestResultRowView = ( |
| 310 | props: ResultRowProps & {readonly cellPrefix?: string}, |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…