react-hook-form
Installation
SKILL.md
React Hook Form
Performant, flexible forms with easy validation and minimal re-renders.
Quick Start
Install:
npm install react-hook-form
Basic form:
import { useForm } from 'react-hook-form';
interface FormData {
email: string;
password: string;
}