React quick start Ant Design template

introduction

Ant Design is a popular React UI component library that provides a rich set of reusable components to build modern web applications. This article will introduce how to quickly get started using the Ant Design template to build the basic structure of a React application.

step

Step 1: Create a React application

First, make sure you have Node.js and npm installed. Then open the command line tool and execute the following command to create a new React application:

npx create-react-app my-app

my-appThis will create a new folder named git in the current directory and automatically install all necessary dependencies.

Step 2: Install Ant Design

Enter the project directory my-appand execute the following command to install Ant Design:

cd my-app
npm install antd

This will install Ant Design and its associated dependencies.

Step 3: Import styles

Open src/index.jsthe file and add the following code at the top to import Ant Design's styles:

import 'antd/dist/antd.css';

This will ensure that your application loads and applies Ant Design's styles correctly.

Step 4: Using Ant Design Components

Now you can use various UI components provided by Ant Design in React components. For example, open src/App.jsthe file and replace its contents with the following code:

import React from 'react';
import { Button } from 'antd';

function App() {
  return (
    <div>
      <h1>Hello, Ant Design!</h1>
      <Button type="primary">Click Me</Button>
    </div>
  );
}

export default App;

This will render a simple page in the application with a title and a button with the text "Click Me".

Step 5: Run the application

Finally, execute the following command at the command line to start the React development server:

npm start

After the compilation is complete, you can visit it in the browser http://localhost:3000/and see that your React application has been successfully started and the components of Ant Design are displayed.

in conclusion

By following the above steps, you have successfully quickly started using the Ant Design template to build the basic structure of the application in React. You can now continue to explore the rich library of components provided by Ant Design, and customize and extend it as needed.

Hope this article helps you! If you have any questions or need further guidance, feel free to leave a comment to discuss.

Guess you like

Origin blog.csdn.net/qq_70703397/article/details/131247457