• Skip to primary navigation
  • Skip to main content
  • Skip to footer
Code The Dream School
Code the Dream Labs Logo

Code The Dream School

Main hub for class materials for Code the Dream’s classes

  • Code the Dream Home

Search Code The Dream School

Orange Sparrow: React Front End Class

Welcome to Orange Sparrow, the React Front End Class!

Below is a quick outline of this course. Remember to keep pace with the mentor sessions, and don’t hesitate to ask lots of questions! Slack is the best place for your questions, and you have a Slack channel for that purpose. Get oriented on the Student Resources page. Sign up for mentor sessions on the Google sign-up sheet will will be sent out every Monday via Slack.

Class Wiki: https://github.com/Code-the-Dream-School/ctd-react-sparrow/wiki

The Class Wiki is an easy to read and reference location where you can see all of the below information (week numbers, when they start and end, what the topic is for each week, with links to the lesson instructions for each week). If you need any assistance please contact the Class Coordinator.

General Instructions: https://github.com/Code-the-Dream-School/ctd-react-sparrow/wiki/General-Instructions

The General Instructions are steps that should be completed with each week’s assignment, regardless of the topic for the week. These are also good habits to be familiar with as you will use them very often in a developer job. If you have any questions please contact the Class Coordinator.

Course Calendar

The calendar below shows the start date of each week of the course and includes breaks and special events.

Course Sections

Section 1: React Fundamentals

WeekStartDue DateLessons
003/09/2203/15/22Sign up for access to your text
103/16/2203/22/22Lesson 1.1
Project Setup and React basics
203/23/2203/29/22Lesson 1.2
React DOM and Components
303/30/2204/05/22Lesson 1.3
Props, State, and Handlers
404/06/2204/12/22Review – Lessons 1.1 – 1.3 (Lesson 1.3 especially)
begin readings in Lesson 1.4 if you wish
504/13/2204/19/22Lesson 1.4
Lifting State and Props Handling
604/20/2204/26/22Lesson 1.5
Hooks and Fragments
704/27/2205/03/22Lesson 1.6
Reusable Components, Imperative React
805/04/2205/10/22Lesson 1.7
Asynchronous Data, Conditional Rendering,
Advanced and Impossible State
905/11/2205/17/22 Review/Catch up Week
✔ Review or catch-up on any work from the beginning of class to now
✔ Complete lesson 1.7 coding assignment
✔ Read “React Fundamentals – Data Fetching” in your text
Mindset Assignment Link
1005/18/2205/24/22 Lesson 1.8
Data Fetching, Data Refetching, Memoized Handlers
1105/25/2205/31/22Lesson 1.9
Third-Party Libraries, Async/Await, Forms

Section 2: React Legacy

WeekStartDue DateLessons
1206/01/2206/07/22Lesson 2.1
React Router, Class Components

Section 3: React Styling

WeekStartDue DateLessons
1306/08/2206/14/22Lesson 3.1
CSS, Styled Components, SVG

Section 4: React Maintenance

WeekStartDue DateLessons
1406/15/2206/21/22 Review/Catch up Week
✔ Review or catch-up on any work from the beginning of class to now
✔ Work ahead on 4.1 if you wish
Mindset Assignment Link
1506/22/2206/28/22Lesson 4.1
Performance, TypeScript, Testing, Project Structure

Section 5: React Real World

WeekStartDue DateLessons
1606/29/2207/05/22Lesson 5.1
Sorting, Searches, Pagination

Section 6: Deployment

WeekStartDue DateLessons
1707/06/2207/12/22Final project work completion
07/13/2207/15/22Final Project Presentations
(2 nights, Time TBD)
— 07/25/2209/20/22PRACTICUM

What You Will Be Learning

Throughout the next 16 weeks you will learn how to build a To-Do app using React through your coding assignments and a blog site through the textbook. This course utilizes Road to React as it’s learning material, with supplemental assignments created by our curriculum developers.

Before You Begin

Be sure to sign up for access to your online textbook here. You should also already know which code editor you would like to use, and how to access your terminal. For this course each lesson is an individual assignment, but you will work out of the same repository for the entire course/project.

Submitting Your Assignments

For each lesson, you will have a coding assignment and a mindset assignment. At the start of the course you will fork Code the Dream’s main project repository for your course. From then on you will follow the lesson instructions and make changes to your forked copy of that repository. We encourage you to setup a SEPARATE repository in your GitHub account to build the blog site alongside the textbook instructions. You only need to submit your link to your to do list app project repository and your mindset answers. Your project repository for the blog site is for your personal use and benefit. You should have basic familiarity with git before starting this course, but if you aren’t confident in your git skills, see this Github Cookbook. For each assignment, you will do the following steps:

  1. Week 1, fork the repository into your own git account. The fork should be public.
  2. Clone your fork onto your workstation. Important: Clone your fork, not the original repository.
  3. Create a branch for your lesson. Commit changes to that branch periodically, and push them to GitHub.
  4. When the lesson is complete and all your work has been pushed to GitHub, open a pull request for your branch.
  5. Then use the Squibby 2.0 webform to submit the link to your pull request, your mindset answers, and feedback. This is how we know to review your assignment.

All of your work throughout the course will be done in your GitHub repositories (textbook work in your blog project repository and coding assignments in your ctd-react-sparrow forked repository). You should create a separate branch for each lesson. Be sure to remember to merge that branch with main at the end/start of every week so the code you’re building from week to week gets updated on your main branch, which will be the final copy of your project.

When Submitting Your Code

When you submit your code, it should be working. If you are not able to get your code working, ask for help on Slack, or bring up questions in a mentor session, or ask for a special mentor session.

All code should be readable. There are many aspects to good code style, but the most important for right now is indentation! The content of blocks, methods, and classes should be indented two spaces. The end statement should line up, being indented the same number of spaces, with the statement that begins the block, method, or class. Here’s an example:

function my_function(parameter) {
  if (x === 0) {
    return x;
  else {
    return error;
  }
}

We need proper indentation in order to be able to review your assignments. You need proper indentation to make sure your code is structured correctly.

Footer

Copyright © 2025 Code the Dream School | All Rights Reserved | Privacy Policy