(
props: ValuesProps & {readonly valuePrefix?: string},
)
| 180 | ); |
| 181 | |
| 182 | const TestValuesView = ( |
| 183 | props: ValuesProps & {readonly valuePrefix?: string}, |
| 184 | ) => ( |
| 185 | <ValuesView |
| 186 | {...props} |
| 187 | valueComponent={TestValueView} |
| 188 | getValueComponentProps={(_valueId: Id) => ({ |
| 189 | valuePrefix: props.valuePrefix, |
| 190 | })} |
| 191 | /> |
| 192 | ); |
| 193 | |
| 194 | const TestValueView = (props: ValueProps & {readonly valuePrefix?: string}) => ( |
| 195 | <> |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…