流行的开源 React UI 组件库
- 国外: material-UI
- 国内: ant-design
antd
-
安装:
yarn add antd
-
基本使用
import React, { Component } from "react" import { Button } from "antd" import { WechatOutlined } from '@ant-design/icons' import "antd/dist/antd.css" export default class App extends Component { render() { return ( <div> <div>App</div> <button>点我</button> <Button type="primary">Primary Button</Button> <WechatOutlined /> </div> ) } }
-
按需使用样式
yarn eject
来暴露配置选项, 或者- 通过官网不暴露的方式, 更安全
-
自定义主题
- 直接去官网文档
- 配置因版本而不同