41 lines
783 B
Markdown
41 lines
783 B
Markdown
# My Ant Design App
|
|
|
|
This is a simple React application that uses Ant Design's `Select` component to create a multiple select dropdown with custom options.
|
|
|
|
## Prerequisites
|
|
|
|
Before you begin, ensure you have met the following requirements:
|
|
|
|
- You have installed [Node.js](https://nodejs.org/) and [npm](https://www.npmjs.com/).
|
|
- You have a code editor like [Visual Studio Code](https://code.visualstudio.com/).
|
|
|
|
## Getting Started
|
|
|
|
To get a local copy up and running follow these simple steps.
|
|
|
|
### Installation
|
|
|
|
1. Clone the repository:
|
|
|
|
```sh
|
|
git clone https://github.com/your-username/my-antd-app.git
|
|
```
|
|
|
|
2. Navigate to the project directory:
|
|
|
|
```sh
|
|
cd my-antd-app
|
|
```
|
|
|
|
3. Install the dependencies
|
|
|
|
```sh
|
|
npm install
|
|
```
|
|
|
|
4. Running the App
|
|
|
|
```sh
|
|
npm start
|
|
```
|