Files
tag/README.md

41 lines
783 B
Markdown
Raw Normal View History

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
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
2024-12-24 10:43:26 +07:00
```
2024-12-24 10:48:15 +07:00
3. Install the dependencies
```sh
npm install
```
4. Running the App
```sh
npm start
2024-12-24 10:43:26 +07:00
```