Web/React
Typo in static class property declaration react/no-typos 에러 해결 방법
proqk
2020. 7. 6. 18:14
반응형
Typo in static class property declaration react/no-typos 에러
static propTypes={
name: PropTypes.string,
age: PropTypes.number.isRequired
}
static propTypes
name: PropTypes
대소문자를 확인한다
반응형