[에러대백과] Attempted import error: ' ' does not contain a default export
2022. 5. 16. 23:01ㆍWEB Dev/에러대백과
728x90
api 모듈을 모아둔 컴포넌트에서 export - import 해온 함수를 쓰려고 하니
다음과 같은 에러가 떴다.
Attempted import error: '경로' does not contain a default export
이 경우는 export default로 해당 컴포넌트에서 default 로 내보낸 함수가 아닌 다른 함수들을 그냥 쓰려고 하면 나오는 오류로
import axiosLoginAccount from '../../api/apiCommunicate';
위와 같이 쓰는 것이 아닌
import { axiosLoginAccount } from '../../api/apiCommunicate';
위와 같이 쓰면 해당 오류가 발생하지 않는다.
728x90
'WEB Dev > 에러대백과' 카테고리의 다른 글
[에러대백과] 리액트 Suspense 사용하고 에러나는 경우 Feed suspended while rendering, but no fallback UI was specified (0) | 2022.07.31 |
---|---|
[에러대백과] 리액트 github page 페이지 배포 시 빈 화면 등장 (0) | 2022.05.27 |
[에러대백과] Your branch is ahead of 'origin/main' by 1 commit. (0) | 2022.03.16 |
[에러대백과] Expected an assignment or function call and instead saw an expression (0) | 2022.03.09 |
[에러대백과] ajax에서의 "parseerror" (0) | 2022.03.02 |