(
props: LinkedRowsProps & {readonly cellPrefix?: string},
)
| 191 | ); |
| 192 | |
| 193 | const TestLinkedRowsView = ( |
| 194 | props: LinkedRowsProps & {readonly cellPrefix?: string}, |
| 195 | ) => ( |
| 196 | <> |
| 197 | {props.firstRowId}: |
| 198 | <LinkedRowsView |
| 199 | {...props} |
| 200 | rowComponent={TestRowView} |
| 201 | getRowComponentProps={useCallback( |
| 202 | () => ({cellPrefix: props.cellPrefix}), |
| 203 | [props.cellPrefix], |
| 204 | )} |
| 205 | /> |
| 206 | </> |
| 207 | ); |
| 208 | |
| 209 | const TestResultTableView = ( |
| 210 | props: ResultTableProps & {readonly cellPrefix?: string}, |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…