React hook form with headlessui components

The headless ui components like combobox and radio group use an array of options and each option in this array is an object. By default, headless ui sends you the complete information of selected option i.e the complete object of the selected option. But, it is very rare that you will need this. So, I have also created a version of the components to return only the value of the selected option instead of complete object. You can check it out here

Form ->

Prefill

Watch ->

{}

Form Submission Data ->

{}

Form States ->

{
  "errors": {},
  "isDirty": false,
  "isSubmitting": false,
  "touchedFields": {},
  "submitCount": 0
}