Sorry, but you either have no stories or none are selected somehow.
If the problem persists, check the browser console, or the terminal you've run Storybook from.
In MHF, there are a few components that take in a set of options such as the MHFSelect, MHFMultipleSelect, MHFAutocomplete, and MHFRadioButtonGroup components. As of now, only the MHFAutocomplete and MHFRadioButtonGroup components support an array of objects as options.
Additionally, the MHFAutocomplete is also able to return objects within the form state natively. All other components can only return the option label as a string. In the future, it can be considered to provide full support for this, but in the mean time, below will present a few examples (in both TypeScript and JavaScript) of achieving object data being present in your RHF form data.
MHFRadioButtonGroup as a built-in method to deal with object arrays named getRadioLabel. Below is an example of how it works. example.
MUI's Auotcomplete component comes with built-in methods to handle object arrays, and MHFAutocomplete takes full advantage of that. Below is an example of how to implement it.