프론트엔드 썸네일형 리스트형 React-hook-form 내용 정리 react-hook-form 은 React에서 폼 관리를 간편하게 도와주는 라이브러리입니다.배운 내용을 필기 토대로 정리해봅니다.1. register 함수모든 폼 입력 요소를 register 함수에 연결해야 합니다.useForm 훅에서 가져올 수 있습니다.폼 입력 필드의 이름을 지정해야 react-hook-form이 이를 인식할 수 있습니다.예제import {useForm} from "react-hook-form";function Form () { // regiter 함수 가져오기 const {register, handleSubmit} = useForm(); const onSubmit = (data) => { console.log(data); }};return ( .. 더보기 이전 1 다음