React Installation
This page guides how to setup a react app using Vite as bundler
1
Project Structure
my-react-app/
├── node_modules/
├── public/
├── src/
│ ├── App.jsx
│ ├── main.jsx
│ ├── app.css
│ └── index.css
├── .gitignore
├── index.html
├── package.json
├── vite.config.js
└── yarn.lockLast updated