이안의 평일코딩

[오류해결] 'Icon' is not exported from 'antd' 본문

Error

[오류해결] 'Icon' is not exported from 'antd'

이안92 2021. 1. 11. 16:28
반응형

위와 같은 오류가 뜨기 시작.

Attempted import error: '@ant-design/icons' does not contain a default export (imported as 'Icon').

 

 해결방법

기존으로 import 해오던 방식이 아닌

import Icon from '@ant-design/icons';

로 바꿔준다.

 

그리고 터미널에서

npm install @ant-design/icons --save-dev

를 입력해서 설치해주면 오류가 사라진다.

 

간단하쥬?

반응형
Comments