React Hooks : useEffect에서 데이터 fetching하기
How to fetch data with React Hooks? - RWieruch A tutorial on how to fetch data in React with Hooks from third-party APIs. You will use state and effect hooks for the data request from a real API ... www.robinwieruch.de 위 게시물을 근거하여 작성되었으며 기본적인 useEffect에 대해 알고 있다는 전제 하에 작성되었습니다. 🧷 useEffect를 componentDidMount처럼 사용하기 즉, 처음 마운트 된 후 1번만 useEffect가 실행하게 하고 싶다는 의미이다. 이 경우 deps에 빈 배열을 주면 된다. 해당 배열의 의미는..