\(@^0^@)/

Rules of Hooks 본문

TIL

Rules of Hooks

minjuuu 2021. 11. 2. 00:36
728x90
  • Only call React Hooks in React Functions
    반응 함수에서 반응 훅만 호출해야 함.
     ( React Component Functions 또는 Custom Hooks )

 

  • Only call React Hooks at the Top Level
    반응 구성 요소 기능의 최상위 수준에서는 반응 훅만 호출해야 함.
    ( 중첩된 함수에서 훅 호출 X , 블록 문에서 호출 X )

 

  • unofficial Rule for useEffect( ) : always add everything you refer to inside of useEffect( ) as a dependency
    항상 useEffect() 내부에서 참조하는 모든 항목을 항상 dependency array에 추가해야 함.
    (그렇게 하지 말아야 할 정당한 이유가 없는 한)

※ 참고 : https://www.udemy.com/share/101Way3@S3Hf3-oGc6a50lPVXofyohPrfax30qiEH7AV-cgocxbfxE6hzLSm7wnfgvEXwfi3NA==/

728x90

'TIL' 카테고리의 다른 글

[TIL] GIT....ㅠㅠ  (0) 2021.11.17
[TIL] 클론코딩 시작  (0) 2021.11.16
useState( ) vs useReducer( )  (0) 2021.11.01
React Quiz  (0) 2021.10.23
React Quiz  (0) 2021.10.21