Ant Design
-
[React] Ant Design 설치React 2021. 11. 3. 10:59
-Ant Desing (Antd)는 리액트에서 customize 하여 사용 할 수 있는 디자인 컴포넌트 인터페이스이다. -무료로 사용 할 수 있으며 다양한 컴포넌트를 제공해 준다. 설치 순서 1. 리액트 프로젝트를 생성해 준다. yarn create react-app {project name} // or yarn creat-react-app {project name} 2. 리액트 프로젝트에서 package.json에 antd를 추가해 준다. // npm 을 사용 할 경우 npm install antd // yarn 을 사용 할 경우 yarn add antd 3. src/App.css 에 antd/dis/antd.css 를 추가해 준다. @import '~antd/dist/antd.css'; 주의사항 설치..