Skip to content

Ant Design Reference#

Quick reference for Ant Design (antd) components.

Installation#

npm install antd

Basic Usage#

import { Button, Input, Form } from 'antd';
import 'antd/dist/reset.css'; // v5+

function App() {
  return (
    <div>
      <Button type="primary">Click me</Button>
    </div>
  );
}

Common Components#

  • Button - Buttons with various styles
  • Form - Form controls and validation
  • Input - Text input fields
  • Table - Data tables
  • Modal - Dialog boxes
  • Message - Global messages
  • Drawer - Side panels

Browse Topics#