logoMogu Design

⌘ K
  • Design
  • Development
  • Components
  • Ant Design of React
  • Getting Started
  • Usage with Umi
  • Usage with create-react-app
  • Usage with Next.js
  • Usage with Vite
  • CSS Compatible
  • Customize Theme
  • Use custom date library
  • V4 to V5
  • Migrate Less variables to Component Token
  • Third-Party Libraries
  • Internationalization
  • FAQ
  • Contributing
  • Change Log
Install and Initialization
Import antd

Usage with Next.js

Usage with create-react-appUsage with Vite

Next.js is currently the most popular React server-side isomorphic framework in the world. This article will try to use antd components in projects created by Next.js.

Install and Initialization

Before all start, you may need install yarn or pnpm.

npm
yarn
pnpm
$ npx create-next-app antd-demo

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.

After the initialization is complete, we enter the project and start.

$ cd antd-demo
$ npm run dev

Open the browser at http://localhost:3000/. if you see the NEXT logo, it is considered a success.

Import antd

Now we install antd from yarn or npm.

$ npm install antd --save

Modify src/app/page.tsx, import Button component from antd.

import React from 'react';
import { Button } from 'antd';
const Home = () => (
<div className="App">
<Button type="primary">Button</Button>
</div>
);
export default Home;

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 Next.js at its User Guide.

We are successfully running antd components now, go build your own application!