mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-03 12:38:58 +08:00
b8eef9d1b2
* docs: update use-with-create-react-app * update
1.9 KiB
1.9 KiB
order | title |
---|---|
4 | 在 create-react-app 中使用 |
create-react-app 是业界最优秀的 React 应用开发工具之一,本文会尝试使用 create-react-app
创建一个项目,并引入 antd。
安装和初始化
工具会自动初始化一个脚手架并安装 React 项目的各种必要依赖,如果在过程中出现网络问题,请尝试配置代理或使用其他 npm registry。
然后我们进入项目并启动。
$ cd antd-demo
$ yarn start
此时浏览器会访问 http://localhost:3000/ ,看到 Welcome to React
的界面就算成功了。
引入 antd
这是 create-react-app 生成的默认目录结构。
├── README.md
├── package.json
├── public
│ ├── favicon.ico
│ └── index.html
├── src
│ ├── App.css
│ ├── App.js
│ ├── App.test.js
│ ├── index.css
│ ├── index.js
│ └── logo.svg
└── yarn.lock
现在从 yarn 或 npm 安装并引入 antd。
$ yarn add antd
修改 src/App.js
,引入 antd 的按钮组件。
import { Button } from 'antd';
import React from 'react';
const App = () => (
<div className="App">
<Button type="primary">Button</Button>
</div>
);
export default App;
好了,现在你应该能看到页面上已经有了 antd 的蓝色按钮组件,接下来就可以继续选用其他组件开发应用了。其他开发流程你可以参考 create-react-app 的官方文档。
我们现在已经把 antd 组件成功运行起来了,开始开发你的应用吧!