(
props: LocalRowsProps & {readonly cellPrefix?: string},
)
| 175 | ); |
| 176 | |
| 177 | const TestLocalRowsView = ( |
| 178 | props: LocalRowsProps & {readonly cellPrefix?: string}, |
| 179 | ) => ( |
| 180 | <> |
| 181 | {props.remoteRowId}: |
| 182 | <LocalRowsView |
| 183 | {...props} |
| 184 | rowComponent={TestRowView} |
| 185 | getRowComponentProps={useCallback( |
| 186 | () => ({cellPrefix: props.cellPrefix}), |
| 187 | [props.cellPrefix], |
| 188 | )} |
| 189 | /> |
| 190 | </> |
| 191 | ); |
| 192 | |
| 193 | const TestLinkedRowsView = ( |
| 194 | props: LinkedRowsProps & {readonly cellPrefix?: string}, |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…