[Legacy][React] react-hook-form 배열 다루기 - 3
[React] react-hook-form 배열 다루기 - 3 이전 게시글에서 react-hook-form에서 배열 다루는 방법을 알아보았다. 그러나 원시타입의 경우 다루기가 힘들었는데 이러한 문제점을 해결할 수 있는 방법이 있긴하다. 첫 게시글에서 확인해본 useForm hook을 사용하여 다루면 된다. 간단하게 알아보자. (참고 : 이전 게시글에서 소개한 초기값, 출력과 같은 부분 설명은 제외함.) useForm으로 배열 다루기 import { Controller, useForm } from "react-hook-form"; const initValue = { numbers: [""] }; const Basic = () => { // #1 watch, setValue, getValues const {..