반응형
책을 보고 실습하는데 오류가 발생 했다.
Typo in static class property declaration react/no-typos 오류 해결 방법
해결 방법은 아래 PropTypes 이것을 prototype 으로 변경해 주면 된다.
Calc.PropTypes = {
x: PropTypes.number.isRequired,
y: PropTypes.number.isRequired,
oper: calChecker,
}
Calc.prototype = {
x: PropTypes.number.isRequired,
y: PropTypes.number.isRequired,
oper: calChecker,
}
반응형
'개발정보' 카테고리의 다른 글
리눅스 톰캣 실행 확인 (0) | 2023.07.17 |
---|---|
React(리액트) 개발 환경 구축 (0) | 2023.07.11 |
react splice (0) | 2023.07.07 |
React : Parameter 'draft' implicitly has an 'any' type. (0) | 2023.07.07 |
React, some 메서드로 배열 검사하기 (0) | 2023.07.07 |