(
props: LocalRowsProps & {readonly cellPrefix?: string},
)
| 247 | ); |
| 248 | |
| 249 | const TestLocalRowsView = ( |
| 250 | props: LocalRowsProps & {readonly cellPrefix?: string}, |
| 251 | ) => ( |
| 252 | <> |
| 253 | {props.remoteRowId}: |
| 254 | <LocalRowsView |
| 255 | {...props} |
| 256 | rowComponent={TestRowView} |
| 257 | getRowComponentProps={(_rowId: Id) => ({ |
| 258 | cellPrefix: props.cellPrefix, |
| 259 | })} |
| 260 | /> |
| 261 | </> |
| 262 | ); |
| 263 | |
| 264 | const TestLinkedRowsView = ( |
| 265 | props: LinkedRowsProps & {readonly cellPrefix?: string}, |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…