[React] Typo in static class property declaration react/no-typos 오류
Typo in static class property declaration react/no-typos error - Typo in static class property declaration react/no-typos prop의 타입을 체크해주는 PropTypes를 import 하여 사용하던 도중 에러가 발생 - 에러 발생 코드 Movie.PropTypes = { id : PropTypes.number.isRequired, year : PropTypes.number.isRequired, title : PropTypes.string.isRequired, summary : PropTypes.string.isRequired, poster: PropTypes.string.isRequired, }; - 에러 해결..
2022.09.27