(
props: ResultTableProps & {readonly cellPrefix?: string},
)
| 207 | ); |
| 208 | |
| 209 | const TestResultTableView = ( |
| 210 | props: ResultTableProps & {readonly cellPrefix?: string}, |
| 211 | ) => ( |
| 212 | <> |
| 213 | {props.queryId}: |
| 214 | <ResultTableView |
| 215 | {...props} |
| 216 | resultRowComponent={TestResultRowView} |
| 217 | getResultRowComponentProps={useCallback( |
| 218 | () => ({cellPrefix: props.cellPrefix}), |
| 219 | [props.cellPrefix], |
| 220 | )} |
| 221 | /> |
| 222 | </> |
| 223 | ); |
| 224 | |
| 225 | const TestResultSortedTableView = ( |
| 226 | props: ResultSortedTableProps & {readonly cellPrefix?: string}, |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…