react-hook-form / react-hook-form
- суббота, 7 марта 2020 г. в 00:21:54
TypeScript
📋 React hooks for forms validation without the hassle.
Performant, flexible and extensible forms with easy to use validation.
$ npm install react-hook-form
import React from 'react';
import { useForm } from 'react-hook-form';
function App() {
const { register, handleSubmit, errors } = useForm(); // initialise the hook
const onSubmit = data => {
console.log(data);
};
return (
<form onSubmit={handleSubmit(onSubmit)}>
<input name="firstname" ref={register} /> {/* register an input */}
<input name="lastname" ref={register({ required: true })} />
{errors.lastname && 'Last name is required.'}
<input name="age" ref={register({ pattern: /\d+/ })} />
{errors.age && 'Please enter number for age.'}
<input type="submit" />
</form>
);
}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].