(props: IndexProps & {readonly cellPrefix?: string})
| 131 | }; |
| 132 | |
| 133 | const TestIndexView = (props: IndexProps & {readonly cellPrefix?: string}) => ( |
| 134 | <> |
| 135 | {props.indexId}: |
| 136 | <IndexView |
| 137 | {...props} |
| 138 | sliceComponent={TestSliceView} |
| 139 | getSliceComponentProps={useCallback( |
| 140 | () => ({cellPrefix: props.cellPrefix}), |
| 141 | [props.cellPrefix], |
| 142 | )} |
| 143 | /> |
| 144 | </> |
| 145 | ); |
| 146 | |
| 147 | const TestSliceView = (props: SliceProps & {readonly cellPrefix?: string}) => ( |
| 148 | <> |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…