(
props: RemoteRowProps & {readonly cellPrefix?: string},
)
| 159 | ); |
| 160 | |
| 161 | const TestRemoteRowView = ( |
| 162 | props: RemoteRowProps & {readonly cellPrefix?: string}, |
| 163 | ) => ( |
| 164 | <> |
| 165 | {props.localRowId}: |
| 166 | <RemoteRowView |
| 167 | {...props} |
| 168 | rowComponent={TestRowView} |
| 169 | getRowComponentProps={useCallback( |
| 170 | () => ({cellPrefix: props.cellPrefix}), |
| 171 | [props.cellPrefix], |
| 172 | )} |
| 173 | /> |
| 174 | </> |
| 175 | ); |
| 176 | |
| 177 | const TestLocalRowsView = ( |
| 178 | props: LocalRowsProps & {readonly cellPrefix?: string}, |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…