1.安装ant

  1. yarn add antd

2.导入组件

  1. //index.js
  2. import React from 'react';
  3. import ReactDOM from 'react-dom';
  4. import App from './App'
  5. //样式一定要配置在入口文件中
  6. import 'antd/dist/antd.css'
  7. ReactDOM.render(<App />, document.getElementById('root'));

3.使用 app.js

  1. //在app.js中使用 在需要使用组件的页面引入即可
  2. import {Button} from 'antd';
  3. //使用
  4. <Button></Button>