Binary Journey

[React][React-issue] Typo in static class property declaration react/no-typos 본문

Issue

[React][React-issue] Typo in static class property declaration react/no-typos

binaryJournalist 2020. 9. 28. 13:47
반응형

 

리액트로 계산기 만드는 중에 에러가 났다.

 

* 리액트 공식 홈페이지에서 제공하는 계산기 예제 실습 중이었음

- 참고하고 있던 해당 사이트 두 곳

 

ko.reactjs.org/community/examples.html

 

Example Projects – React

A JavaScript library for building user interfaces

ko.reactjs.org

github.com/ahfarmer/calculator

 

ahfarmer/calculator

Simple calculator built with React. Contribute to ahfarmer/calculator development by creating an account on GitHub.

github.com

 

compile error

 

static 에서 오타 생겼다 해서 찾아보니

 

error

 

PropTypes을 대문자로 선언해서 그런 거였다.

 

현재 고친 상태

fixed

반응형