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.
MHF was developed to allow RHF to handle all underlying state. Because of that, all MHF components are considered as uncontrolled components. For some, that may be troublesome because they may require to access the state throughout its life expectancy (before submission of course).
Thankfully, there are ways to access/see the state before it is submitted if you actually require that. Below will be one example in both TypeScript and JavaScript of how it is possible. There may be of course other routes, but the point of MHF isn't to completely neutralize RHF, but rather allow the integration between MUI and RHF be a bit smoother.
Note: There may be other and more efficient methods, but this is just one opinionated method of accessing RHF form data prior to submission.
Not all of MHF Components provide a helper text to assist with error messages. An example of that would be the MHFSlider or MHFLabeledSwitch component. To compensate for this, I am providing a simple solution. The trick is to use a MUI 'FormControl' Tag and provide a 'FormHelperText' Tag. Below will provide an example of such.
A more efficient way of handling this is to use RHF Controller's 'rules' prop. Below will present one soluton.