UI 常用组件库
Ant Design(重点)
https://ant.design/docs/react/getting-started-cn
npm install antd -S
#
yarn add antd
import { Button } from 'antd';
import 'antd/dist/antd.css';
<Button type="primary">Primary</Button>
Ant Design Mobile
https://mobile.ant.design/index-cn
npm install antd-mobile -S
#
yarn add antd-mobile
import { Button } from 'antd-mobile';
import 'antd-mobile/dist/antd-mobile.css';
<Button>Start</Button>