This repository contains the code and materials from the React Workshop conducted by BOSC in collaboration with Aakar Academy
The code has been organized by workshop day. Each day's work is stored in its own folder in the root directory.
Example:
.
├── day1/
├── day2/
├── day3/
├── day4/
└── README.md
Each folder contains the code and examples covered during that specific day's session.
-
Clone the repository:
git clone https://github.com/b0sc/react-workshop.git
-
Navigate to the day's folder you want to run:
cd day2 -
Install the dependencies:
npm install
-
Start the development server:
npm run dev
-
Open the URL shown in the terminal (typically
http://localhost:5173for Vite).
- Each day's folder is an independent project.
- Make sure to run
npm installinside the specific day's folder before starting the project. - The concepts and code build progressively throughout the workshop.
Happy coding! 🚀