docs/Template.md
</a>
npm install react-hook-form
import React from 'react';
import { useForm } from 'react-hook-form';
function App() {
const {
register,
handleSubmit,
formState: { errors },
} = useForm();
const onSubmit = (data) => console.log(data);
return (
<form onSubmit={handleSubmit(onSubmit)}>
<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>
);
}
Thanks go to these kind and lovely sponsors (companies and individuals)!
~Sponsors
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>Thank you for helping and answering questions from the community.
~Helpers
Thanks go to these wonderful organizations! [Contribute].
<a href="https://github.com/react-hook-form/react-hook-form/graphs/contributors"> </a> <!-- -->