React Hook Form이란?
폼을 최소 리렌더로 처리하는 React 폼 라이브러리다.
const { register, handleSubmit } = useForm();
<input {...register('email', {required: true})} />강점
- 비제어 방식 — 입력마다 리렌더 없음
- Zod·Yup 스키마 검증 통합
- 번들 9KB
비제어(uncontrolled) 기반 고성능 React 폼 라이브러리. Zod·Yup 연동.
폼을 최소 리렌더로 처리하는 React 폼 라이브러리다.
const { register, handleSubmit } = useForm();
<input {...register('email', {required: true})} />