(
props: ResultSortedTableProps & {readonly cellPrefix?: string},
)
| 223 | ); |
| 224 | |
| 225 | const TestResultSortedTableView = ( |
| 226 | props: ResultSortedTableProps & {readonly cellPrefix?: string}, |
| 227 | ) => ( |
| 228 | <> |
| 229 | {props.queryId},{props.cellId}: |
| 230 | <ResultSortedTableView |
| 231 | {...props} |
| 232 | resultRowComponent={TestResultRowView} |
| 233 | getResultRowComponentProps={useCallback( |
| 234 | () => ({cellPrefix: props.cellPrefix}), |
| 235 | [props.cellPrefix], |
| 236 | )} |
| 237 | /> |
| 238 | </> |
| 239 | ); |
| 240 | |
| 241 | const TestResultRowView = ( |
| 242 | props: ResultRowProps & {readonly cellPrefix?: string}, |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…