2024-12-24 10:48:15 +07:00
|
|
|
# My Ant Design App
|
2024-12-24 10:43:26 +07:00
|
|
|
|
2024-12-24 10:48:15 +07:00
|
|
|
This is a simple React application that uses Ant Design's `Select` component to create a multiple select dropdown with custom options.
|
2024-12-24 10:43:26 +07:00
|
|
|
|
2024-12-24 10:48:15 +07:00
|
|
|
## Prerequisites
|
2024-12-24 10:43:26 +07:00
|
|
|
|
2024-12-24 10:48:15 +07:00
|
|
|
Before you begin, ensure you have met the following requirements:
|
2024-12-24 10:43:26 +07:00
|
|
|
|
2024-12-24 10:48:15 +07:00
|
|
|
- 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/).
|
2024-12-24 10:43:26 +07:00
|
|
|
|
2024-12-24 10:48:15 +07:00
|
|
|
## Getting Started
|
2024-12-24 10:43:26 +07:00
|
|
|
|
2024-12-24 10:48:15 +07:00
|
|
|
To get a local copy up and running follow these simple steps.
|
2024-12-24 10:43:26 +07:00
|
|
|
|
2024-12-24 10:48:15 +07:00
|
|
|
### Installation
|
|
|
|
|
|
2024-12-24 11:05:36 +07:00
|
|
|
1. Install the dependencies
|
2024-12-24 10:48:15 +07:00
|
|
|
|
|
|
|
|
```sh
|
|
|
|
|
npm install
|
|
|
|
|
```
|
|
|
|
|
|
2024-12-24 11:05:36 +07:00
|
|
|
2. Running the App
|
2024-12-24 10:48:15 +07:00
|
|
|
|
|
|
|
|
```sh
|
|
|
|
|
npm start
|
2024-12-24 10:43:26 +07:00
|
|
|
```
|