DevTools
React Hook Form DevTools lets you inspect form state, field values, and errors in real time. Since BlueForm exposes control via renderRoot, wiring DevTools requires no special integration — just place it next to the form.
Tip
DevTool renders a floating panel outside the form DOM — it does not affect form layout or submission behavior.
Warning
@hookform/devtools should be a dev dependency only. Make sure it is not included in production bundles by using dynamic imports or build-time tree shaking.
Installation
Basic usage
The simplest approach — add DevTools directly in renderRoot via useFormContext:
Per-form control with a factory
For more control — enable DevTools on some forms and not others — use a renderRoot factory:
Set it as the default in setupForm:
Or override per form instance:

