(
props: RemoteRowProps & {readonly cellPrefix?: string},
)
| 232 | ); |
| 233 | |
| 234 | const TestRemoteRowView = ( |
| 235 | props: RemoteRowProps & {readonly cellPrefix?: string}, |
| 236 | ) => ( |
| 237 | <> |
| 238 | {props.localRowId}: |
| 239 | <RemoteRowView |
| 240 | {...props} |
| 241 | rowComponent={TestRowView} |
| 242 | getRowComponentProps={(_rowId: Id) => ({ |
| 243 | cellPrefix: props.cellPrefix, |
| 244 | })} |
| 245 | /> |
| 246 | </> |
| 247 | ); |
| 248 | |
| 249 | const TestLocalRowsView = ( |
| 250 | props: LocalRowsProps & {readonly cellPrefix?: string}, |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…