(props: SliceProps & {readonly cellPrefix?: string})
| 219 | ); |
| 220 | |
| 221 | const TestSliceView = (props: SliceProps & {readonly cellPrefix?: string}) => ( |
| 222 | <> |
| 223 | {props.sliceId}: |
| 224 | <SliceView |
| 225 | {...props} |
| 226 | rowComponent={TestRowView} |
| 227 | getRowComponentProps={(_rowId: Id) => ({ |
| 228 | cellPrefix: props.cellPrefix, |
| 229 | })} |
| 230 | /> |
| 231 | </> |
| 232 | ); |
| 233 | |
| 234 | const TestRemoteRowView = ( |
| 235 | props: RemoteRowProps & {readonly cellPrefix?: string}, |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…