1. 程式人生 > >react使用ant-design組件庫

react使用ant-design組件庫

sig save install all port 引入 des rom type

新建項目並引入組件

1,全局安裝腳手架

npm install -g create-react-app

2,新建項目

create-react-app reactantd

3,安裝組件

npm install antd --save

4,引入組件

在需要使用組件的頁面進行引入並使用

import Button from ‘antd/lib/button‘ import ‘antd/dist/antd.css‘ <Button type="primary">antd</Button>

react使用ant-design組件庫