From 8da6db58fa5ba5aa1e86d9e0be3501a28aa3e3c5 Mon Sep 17 00:00:00 2001 From: Tieptk Date: Tue, 24 Dec 2024 10:48:15 +0700 Subject: [PATCH] up --- README.md | 68 ++++++++++++++++++++++++------------------------------- 1 file changed, 29 insertions(+), 39 deletions(-) diff --git a/README.md b/README.md index 74872fd..777c932 100644 --- a/README.md +++ b/README.md @@ -1,50 +1,40 @@ -# React + TypeScript + Vite +# My Ant Design App -This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules. +This is a simple React application that uses Ant Design's `Select` component to create a multiple select dropdown with custom options. -Currently, two official plugins are available: +## Prerequisites -- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh -- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh +Before you begin, ensure you have met the following requirements: -## Expanding the ESLint configuration +- 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/). -If you are developing a production application, we recommend updating the configuration to enable type aware lint rules: +## Getting Started -- Configure the top-level `parserOptions` property like this: +To get a local copy up and running follow these simple steps. -```js -export default tseslint.config({ - languageOptions: { - // other options... - parserOptions: { - project: ['./tsconfig.node.json', './tsconfig.app.json'], - tsconfigRootDir: import.meta.dirname, - }, - }, -}) +### 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 ``` -- Replace `tseslint.configs.recommended` to `tseslint.configs.recommendedTypeChecked` or `tseslint.configs.strictTypeChecked` -- Optionally add `...tseslint.configs.stylisticTypeChecked` -- Install [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) and update the config: +3. Install the dependencies -```js -// eslint.config.js -import react from 'eslint-plugin-react' - -export default tseslint.config({ - // Set the react version - settings: { react: { version: '18.3' } }, - plugins: { - // Add the react plugin - react, - }, - rules: { - // other rules... - // Enable its recommended rules - ...react.configs.recommended.rules, - ...react.configs['jsx-runtime'].rules, - }, -}) +```sh + npm install +``` + +4. Running the App + +```sh + npm start ```