(props: SliceProps & {readonly cellPrefix?: string})
| 145 | ); |
| 146 | |
| 147 | const TestSliceView = (props: SliceProps & {readonly cellPrefix?: string}) => ( |
| 148 | <> |
| 149 | {props.sliceId}: |
| 150 | <SliceView |
| 151 | {...props} |
| 152 | rowComponent={TestRowView} |
| 153 | getRowComponentProps={useCallback( |
| 154 | () => ({cellPrefix: props.cellPrefix}), |
| 155 | [props.cellPrefix], |
| 156 | )} |
| 157 | /> |
| 158 | </> |
| 159 | ); |
| 160 | |
| 161 | const TestRemoteRowView = ( |
| 162 | props: RemoteRowProps & {readonly cellPrefix?: string}, |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…