[React] Hook- array useState 관리
개요 React Hook 에서 사용되는 useState의 관리 방법을 정리 합니다. useState가 array 인경우 추가 https://bobbyhadz.com/blog/react-push-to-state-array How to push an Element into a state Array in React | bobbyhadz Use the spread syntax to push an element to a state array in React, e.g. `setNames(current => [...current, 'New'])`. The spread syntax (...) will unpack the existing elements of the state array into a new array w..