(props: RowProps & {readonly cellPrefix?: string})
| 323 | ); |
| 324 | |
| 325 | const TestRowView = (props: RowProps & {readonly cellPrefix?: string}) => ( |
| 326 | <> |
| 327 | {props.rowId}: |
| 328 | <RowView |
| 329 | {...props} |
| 330 | cellComponent={TestCellView} |
| 331 | getCellComponentProps={useCallback( |
| 332 | () => ({cellPrefix: props.cellPrefix}), |
| 333 | [props.cellPrefix], |
| 334 | )} |
| 335 | /> |
| 336 | </> |
| 337 | ); |
| 338 | |
| 339 | const TestCellView = (props: CellProps & {readonly cellPrefix?: string}) => ( |
| 340 | <> |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…