Skooldio / react-jumpstart-hands-on-learning-for-beginners

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

React Jumpstart: Hands-On Learning for Beginners

This repo contains the source code for the React Jumpstart course.

How to use this repo

Each folder inside src/* is for each lesson which contains 2 files:

  • Challenge.jsx: The challenge file for you to complete the exercise.
  • Solution.jsx: The solution file for you to compare your solution with the instructor's solution.

How to run this repo

  1. Clone this repo.
  2. Run npm install or yarn install.
  3. Run npm run dev or yarn dev.
  4. Open http://127.0.0.1:5173/ in your browser.

How to run each lesson

  1. Open src/App.jsx.

  2. Change the return jsx to the lesson you want to run.

    function App() {
    -  return <S05Challenge />;
    +  return <S06Challenge />;
    }
  3. Follow the lesson instruction to complete the exercise.

What to do if you're stuck

  1. Check the Solution.jsx file for the solution.
  2. Post your question in the comment section of the lesson by describing your problem in detail.

About


Languages

Language:JavaScript 95.3%Language:CSS 3.9%Language:HTML 0.8%