* docs: update use-with-create-react-app * update
1.9 KiB
order | title |
---|---|
4 | Usage with create-react-app |
create-react-app is one of the best React application development tools, This article will try to use create-react-app
to create a project, and introduce antd.
Install and Initialization
Before all start, you may need install yarn or pnpm.
The tool will create and initialize environment and dependencies automatically, please try config your proxy setting or use another npm registry if any network errors happen during it.
Then we go inside project and start it.
$ cd antd-demo
$ yarn start
Open the browser at http://localhost:3000/. It renders a header saying Welcome to React
on the page.
Import antd
Below is the default directory structure.
├── 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
Now we install antd
from yarn or npm.
$ yarn add antd
Modify src/App.js
, import Button component from antd
.
import { Button } from 'antd';
import React from 'react';
const App = () => (
<div className="App">
<Button type="primary">Button</Button>
</div>
);
export default App;
OK, you should now see a blue primary button displayed on the page. Next you can choose any components of antd
to develop your application. Visit other workflows of create-react-app
at its User Guide.
We are successfully running antd components now, go build your own application!