(
props: ValuesProps & {readonly valuePrefix?: string},
)
| 345 | ); |
| 346 | |
| 347 | const TestValuesView = ( |
| 348 | props: ValuesProps & {readonly valuePrefix?: string}, |
| 349 | ) => ( |
| 350 | <ValuesView |
| 351 | {...props} |
| 352 | valueComponent={TestValueView} |
| 353 | getValueComponentProps={useCallback( |
| 354 | () => ({valuePrefix: props.valuePrefix}), |
| 355 | [props.valuePrefix], |
| 356 | )} |
| 357 | /> |
| 358 | ); |
| 359 | |
| 360 | const TestValueView = (props: ValueProps & {readonly valuePrefix?: string}) => ( |
| 361 | <> |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…