[React] 에러 : Element type is invalid: ... forgot to export your component from the file it's defined in, or you might have mixed up default and named imports. (+스타일컴포넌트 네이밍 실수)
·
React
❌ React - Error ❗Error: Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: object. You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports. 알아보니 - router component로 설정해놓은 page 컴포넌트가 export 없이 비어있어서 - import한 컴포넌트의 네이밍 문제로 . . 등으로 발생하는 에러라고 한다. 내 경우도 위와 ..