π¨ Frontend Setup
## π Initialize React Project & Install Dependencies
> [!tip] π» Copy & Paste into your IDE Terminal
β‘ Using Vite (recommended)
cd ../frontend
npm create vite@latest
π¦ Or, using CRA
npx create-react-app .
π§ Install essentials
npm install axios react-router-dom
- Axios for requests, React Router for front-end routing.
[!info] β¨ Why these packages?
-
π‘ Axios β For making HTTP requests.
-
π§ React Router DOM β For front-end routing and navigation.