(props: IndexProps & {readonly cellPrefix?: string})
| 206 | ); |
| 207 | |
| 208 | const TestIndexView = (props: IndexProps & {readonly cellPrefix?: string}) => ( |
| 209 | <> |
| 210 | {props.indexId}: |
| 211 | <IndexView |
| 212 | {...props} |
| 213 | sliceComponent={TestSliceView} |
| 214 | getSliceComponentProps={(_sliceId: Id) => ({ |
| 215 | cellPrefix: props.cellPrefix, |
| 216 | })} |
| 217 | /> |
| 218 | </> |
| 219 | ); |
| 220 | |
| 221 | const TestSliceView = (props: SliceProps & {readonly cellPrefix?: string}) => ( |
| 222 | <> |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…