(props: ControlProps)
| 235 | * Dispatch changes via the provided `handleChange` method. |
| 236 | */ |
| 237 | export const useJsonFormsControl = (props: ControlProps) => { |
| 238 | return useControl(props, mapStateToControlProps, mapDispatchToControlProps); |
| 239 | }; |
| 240 | |
| 241 | /** |
| 242 | * Provides bindings for 'Control' elements which can provide a 'detail', |
nothing calls this directly
no test coverage detected
searching dependent graphs…