(
props: SortedTableProps & {readonly cellPrefix?: string},
)
| 307 | ); |
| 308 | |
| 309 | const TestSortedTableView = ( |
| 310 | props: SortedTableProps & {readonly cellPrefix?: string}, |
| 311 | ) => ( |
| 312 | <> |
| 313 | {props.tableId},{props.cellId}: |
| 314 | <SortedTableView |
| 315 | {...props} |
| 316 | rowComponent={TestRowView} |
| 317 | getRowComponentProps={useCallback( |
| 318 | () => ({cellPrefix: props.cellPrefix}), |
| 319 | [props.cellPrefix], |
| 320 | )} |
| 321 | /> |
| 322 | </> |
| 323 | ); |
| 324 | |
| 325 | const TestRowView = (props: RowProps & {readonly cellPrefix?: string}) => ( |
| 326 | <> |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…