함수형 컴포넌트 할때 잠시 나왔던 react hook인데, useState, useEffect 등 유용한 것이 많다.
useEffect는 vue의 watch같이 컴포넌트가 마운트, 업데이트 될때 호출되는 훅으로 많이 쓰이는데 자세한건 공식문서를 읽어보는 것이 좋을 것 같다. 자세한건 실제로 사용하면서 블로그에 정리하는 것으로..!
hook 소개
https://reactjs.org/docs/hooks-intro.html#motivation
hook 개요
https://reactjs.org/docs/hooks-overview.html
hook 모음
https://reactjs.org/docs/hooks-reference.html#gatsby-focus-wrapper
반응형
'React' 카테고리의 다른 글
[React] 깃허브에 올리면 안되는 apikey 설정하는법 (.env 파일) (0) | 2022.02.21 |
---|---|
[React 세팅] 리액트 create-react-app 세팅 오류 ! (You are running `create-react-app` 4.0.1, which is behind the latest release (5.0.0).) (0) | 2022.02.09 |
[React 기본] Lifecycle Methods (0) | 2022.02.07 |
[React 기본] 함수형 컴포넌트의 PureComponent는? memo! (0) | 2022.02.07 |
[React 기본] 함수형 컴포넌트 만들어보기 (class > function Component) (0) | 2022.02.07 |