Performant, flexible and extensible forms with easy to use validation.
This React Component will help you to debug forms when working React Hook Form, and give you more insight about your form's detail.
$ npm install @hookform/devtools -D
importReactfrom'react';import{useForm}from'react-hook-form';import{DevTool}from'@hookform/devtools';import'./App.css';constApp=()=>{const{ register, control, handleSubmit }=useForm({mode: 'onChange',});return(<><DevToolcontrol={control}placement="top-left"/><formonSubmit={handleSubmit((d)=>console.log(d))}><h1>ReactHookFormDevTools</h1><label>Test</label><inputname="test"ref={register}/><inputtype="submit"/></form></>);};exportdefaultApp;Thanks goes to all our backers! [Become a backer].
Thanks goes to these wonderful organizations! [Contribute].
Thanks goes to these wonderful people! [Become a contributor].

