This repository contains the starter and finished code for the Dev Club React Workshop.
Participants will submit their completed workshop projects inside the /submissions folder.
REACT-WORKSHOP/
│
├── finish/
│ └── flashcard-app.zip
│
├── initial/
│ └── flashcard-app.zip
│
├── submissions/
│ └── .gitkeep
│
└── README.md
Click the "Fork" button on the top right of this repo.
git clone https://github.com/devclub-nstru/React-Workshop.git
cd React-WorkshopInside the initial/ folder:
- Unzip
flashcard-app.zip - You will get a standard Vite + React setup
npm installnpm run devThe development server will start at something like:
http://localhost:5173
When you're done:
-
Create a new folder inside
/submissionsnamed after your GitHub username Example:submissions/your-username/ -
Put your completed project inside that folder.
-
Push your code:
git add . git commit -m "my workshop submission" git push