export 'Switch' (imported as 'Switch')
>> 위의 오류일 경우, 버전이 업그레이드 되면서 지원하지 않아 오류가 발생함
Cannot read properties of null (reading 'useRef')
Cannot read properties of null (reading 'useContext')
>> 위의 두 오류는 정말 ''이네;;;;;
TypeError: Cannot read properties of undefined (reading 'func')
>> React랑 PropType 라이브러리가 분리되면서 생긴 문제입니다.
터미널에서 아래와 같이 입력합니다.
npm install --save prop-types
위처럼 다운로드를 받고도 해결이 안된다면 다음과 같이 진행을 해야함.
JS파일에서
import PropTypes from 'prop-types';
를 해주고 혹시 React.propTypes.func로 작성하였다면, PropTypes.func로 바꿔줘야함.
React.propTypes.func
// 라면 아래와 같이 바꿔줘야함
PropTypes.func
댓글