본문으로 바로가기

[React]Attempted import error descriptions is not exported from antd

category Debug 2021. 2. 20. 23:50
728x90
반응형

▷ 에러 코드

Attempted import error: 'Icon' is not exported from 'antd'

▷ 해결 방안

터미널에서 npm install @ant-design/icons --save-dev을 실행한 후

소스로 이동하여 import Icon from '@ant-design/icons';를 선언해줍니다.

반응형