docs/README.ar-AR.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>اسم العائلة مطلوب.</p>}
<input {...register('age', { pattern: /\d+/ })} />
{errors.age && <p>الرجاء إدخال عدد للعمر.</p>}
<input type="submit" />
</form>
);
}
~الرعاة
الداعمين شكرًا لجميع داعمينا! [كن داعمًا].
<a href="https://opencollective.com/react-hook-form#backers"> </a> المساهمين شكرًا لهؤلاء الأشخاص الرائعين! [كن مساهمًا]. <a href="https://github.com/react-hook-form/react-hook-form/graphs/contributors"> </a> المساعدين شكرًا لكم على مساعدتكم والإجابة على أسئلة المجتمع.~المساعدين
المنظمات شكرًا لهذه المنظمات الرائعة! [ساهم].
<a href="https://github.com/react-hook-form/react-hook-form/graphs/contributors"> </a>