(v: any)
| 18 | const [value, setValue] = React.useState<string[]>(['b11']); |
| 19 | |
| 20 | const onChange = (v: any) => { |
| 21 | console.log('onChange', v); |
| 22 | setValue(v); |
| 23 | }; |
| 24 | |
| 25 | return ( |
| 26 | <div> |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…