(value: T)
| 119 | }, [JSON.stringify(values)]); |
| 120 | |
| 121 | const handleChange = (value: T) => { |
| 122 | if (typeof onChange === 'function') { |
| 123 | onChange(value); |
| 124 | } |
| 125 | }; |
| 126 | |
| 127 | return ( |
| 128 | <Skeleton loading={loading}> |
nothing calls this directly
no test coverage detected