오늘의 오류
[react-native 에러] 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 your component from the file it's defined in, or you might have mix..
애해
2022. 3. 13. 13:01
728x90
# 발생 상황
컴포넌트를 추가하면서 element type 에러 발생
# 발생 원인

import를 할 때 import를 하는 파일(예:@react-native-coummunity/slider)에서 지정한 export방식을 기준으로 해야하는데 import 방식이 틀렸기 때문에 오류가 발생했다.
export 방식이 default로 되어있는 경우 변수명을 자유롭게 지정할 수있고 중괄호{} 없이 import 가능하다.
default가 아닌 와 같은 경우에는 중괄호(예:import {a})와 지정된 변수명을 사용하여 import 해야한다.
# 해결 방안

중괄호를 삭제하고 import했다.
반응형