본문 바로가기

Framework & Library/React-native

Render error

 

 

 

 

리액트 네이티브 render error 화면

 

해당 에러는 컴포넌트 렌더링이 제대로 안되었을 시 나타난다

가장 아랫줄의

check the render method of 'Register'. 는 어디서 에러가 났는지 알려준다

register 컴포넌트로 가서 import 문을 확인해주자ㅏㅏ

나의 경우,

import CheckBox from~ 을

import { CheckBox } from~ 으로 써서 에러가 발생했다

올바르게 import문을 고치면, 해당 에러가 사라진다ㅏㅏㅏ

 

 

출처 : 

https://maaani.tistory.com/153

 

Error: Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but g

Error: Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: undefined. You likely forgot to export y..

maaani.tistory.com