미해결
iOS/Android 앱 개발을 위한 실전 React Native - Intermediate
React Navigation 셋업 오류
routes.js 작성하고 AuthStack.Navigator로 화면 호출할때 오류나는거 저만 그런가요...?
Couldn't find a 'component', 'getComponent' or 'children' prop for the screen 'main'. this can happen if you passed 'undefined' you likely forgot to export your component from the file it's defined in, or mixed up default import and named import when importing
찾아보니까 import 시킬때
import { 이름 } from './compont';
->
import 이름 from './compont';
이렇게 변경하라는 답변들이 많았는데 전 이미 그렇게 했는데도 오류가 뜨는데 다른 요인이 있을수 있을까요...
해당 import 하는 클래스 파일에도 하단에 export 한 상태입니다...