react hook rule1 React Hook Rule에 대해 이해하기 react-hooks/rules-of-hooks error를 마주해 보신 적 있으신가요? const [a, setA] = useState('a'); if (a === 'a') { const [b, setB] = useState('b'); // eslint error }위와 같이 코드를 선언하면 아래와 같은 error를 마주하게 됩니다.React Hook "useState" is called conditionally. React Hooks must be called in the exact same order in every component render. eslint react-hooks/rules-of-hooksReact Hooks는 모든 컴포넌트 렌더링마다 정확하게 같은 순서로 호출되어야 한.. 2024. 10. 30. 이전 1 다음