安装和初始化
项目中进行安装yarn add antd
或者npm i antd
安装
使用 在App.js文件中引入按钮并使用
需要引入自己的css文件 模块化
import React, { Component } from 'react'
import { Button } from 'antd'; //引入按钮
import 'antd/dist/antd.css'; //还需要引入css样式
export default class App extends Component {
render() {
return (
<div>
<Button>我是antd的按钮哦</Button>
</div>
)
}
}
- 前提需要
安装react-app-rewired / customize-cra
- 需要配置
package.json
文件
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test",
"eject": "react-scripts eject"
}