목록react-hook-form (1)
1seul357

React Hook Formreact-hook-form은 React 기반의 폼 관리 라이브러리로, 효율적인 폼 관리가 가능하다. state를 사용한 상태 관리를 할 필요가 없고, 간단하게 폼 유효성 검사도 할 수 있다.설치npm install react-hook-form예시import { useForm, SubmitHandler } from "react-hook-form"type Inputs = { example: string exampleRequired: string}export default function App() { const { register, handleSubmit, watch, formState: { errors }} = useForm() const onSubmit: SubmitH..
TIL
2024. 8. 4. 13:57