본문 바로가기
React/React Error

[React Error]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 your component from the file it's defined in, or you might have mixed..

by fefe94 2022. 1. 14.

문제 상황

styled components 작성 후 실행하려는데 에러가 났다.

 

브라우저 상 에러문

 

콘솔 창 에러문

 

Server Error
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 your component from the file it's defined in, or you might have mixed up default and named imports.

요소 타입이 유효하지 않다고 한다.

아마도 오타가 있거나 빼먹고 만들어주지 않은 태그가 있는 듯하다.

 

해결

태그명이 안맞았던 것이 원인이었다.

명칭 통일 시켜서 해결됐다.

댓글