npm create vite@latest my-react-app -- --template react
cd my-react-app
npm install
npm install --save-dev eslint-config-react-app eslint@^8.0.0
# Create a file named .eslintrc.json
touch .eslintrc.json
# ...and add the following:
{ "extends": "react-app" }
npm run dev