README.md
</a>
npm install react-hook-form
import { useForm } from 'react-hook-form';
function App() {
const {
register,
handleSubmit,
formState: { errors },
} = useForm();
return (
<form onSubmit={handleSubmit((data) => console.log(data))}>
<input {...register('firstName')} />
<input {...register('lastName', { required: true })} />
{errors.lastName && <p>Last name is required.</p>}
<input {...register('age', { pattern: /\d+/ })} />
{errors.age && <p>Please enter number for age.</p>}
<input type="submit" />
</form>
);
}
We’re incredibly grateful to these kind and generous sponsors for their support!
<a target="_blank" href="https://thanks.dev/"></a> <a target="_blank" href="https://www.follower24.de/"></a> <a target="_blank" href='https://workleap.com/'></a> <a target="_blank" href="https://kinsta.com/"></a> <a target="_blank" href='https://www.sent.dm'></a> <a target="_blank" href='https://niche.com'></a> <a target="_blank" href='https://toss.im'></a> <a target="_blank" href='https://principal.com/about-us'></a> <a target="_blank" href="https://hygraph.com"></a>
Thank you to our previous sponsors for your generous support!
| <a href="https://www.beekai.com/" target="_blank"></a> | <a href="https://route4me.com/" target="_blank"></a> | <a href="https://www.sgkb.ch/" target="_blank"></a> | <a href="https://www.sanity.io/" target="_blank"></a> | <a href="https://twicsy.com/" target="_blank"></a> | <a href="https://www.leniolabs.com/" target="_blank"></a> | <a href="https://underbelly.is" target="_blank"></a> | <a href="https://feathery.io" target="_blank"></a> | <a href="https://getform.io" target="_blank"></a> | <a href="https://marmelab.com/" target="_blank"></a> |
|---|---|---|---|---|---|---|---|---|---|
| <a href="https://formcarry.com/" target="_blank"></a> | <a href="https://fabform.io" target="_blank"></a> | <a href="https://www.thinkmill.com.au/" target="_blank"></a> | <a href="https://kwork.studio/" target="_blank"></a> | <a href="https://fiberplane.com/" target="_blank"></a> | <a href="https://www.jetbrains.com/" target="_blank"></a> | <a href="https://www.mirakl.com/" target="_blank"></a> | <a href="https://wantedlyinc.com" target="_blank"></a> | <a href="https://www.casinoreviews.net/" target="_blank"></a> | <a href="https://kanamekey.com" target="_blank"></a> |
Thanks go to all our backers! [Become a backer].
<a href="https://opencollective.com/react-hook-form#backers"> </a>Thanks go to these wonderful people! [Become a contributor].
<a href="https://github.com/react-hook-form/react-hook-form/graphs/contributors"> </a> <a href="https://ui.dev/bytes/?r=bill"> </a> <p align="center">Documentation website supported and backed by <a href="https://vercel.com"><b>Vercel</b></a></p>