본문 바로가기
모바일 APP/React-Native

에러 : Invariant Violation: View config getter callback for component must be a function (received `undefined`). Make sure to start component names with a capital letter.

by 살길바라냐 2021. 6. 8.
반응형

말그대로 함수는 앞글자는 대문자 해라는 뜻이다.

const Signup = () => {} // Good

const signup = () => {} // Bad

 

728x90