Back to React Hook Form

README

README.md

7.75.08.1 KB
Original Source
<div align="center"> <a href="https://react-hook-form.com" title="React Hook Form - Simple React forms validation">
    </a>
</div> <div align="center">

</div> <p align="center"> <a href="https://react-hook-form.com/get-started">Get started</a> | <a href="https://react-hook-form.com/docs">API</a> | <a href="https://react-hook-form.com/form-builder">Form Builder</a> | <a href="https://react-hook-form.com/faqs">FAQs</a> | <a href="https://github.com/react-hook-form/react-hook-form/tree/master/examples">Examples</a> </p>

Features

Install

npm install react-hook-form

Quickstart

jsx
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>
  );
}

Sponsors

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>

Past Sponsors

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>

Backers

Thanks go to all our backers! [Become a backer].

<a href="https://opencollective.com/react-hook-form#backers"> </a>

Contributors

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>