Skip to content

Latest commit

 

History

History
102 lines (64 loc) · 4.21 KB

README.md

File metadata and controls

102 lines (64 loc) · 4.21 KB

Exploring React.js

React: The library for web and native user interfaces

Prerequisites

Day 01: Intro to the React Philosophy of Components

Agenda

  • What is React?
  • What is the philosophy of React?
  • How to think about Components
  • React Hello World

Tasks

Study & Practice

Use the Hints and/or Solutions only as a last resort!

The simplest way to start experimenting with React, is by downloading the HTML page example found in the Try React locally section of the documentation and running it locally using Live Server.

Exercises

Most of the chapters from the documentation above contain small exercises that will give you the chance to practice on the concepts. You can also practice on the exercises below:

  • Cookie Notice exercise:
    • Inside the DAY.01 folder, you'll find a folder named exercises which contains a static HTML file (cookie-practice-original.html) which contains a simple Cookie notice widget. Your task is to use the React quickstart HTML found here and convert the Cookie notice widget into a React Component.

Resources


Day 02

Study & Practice

Use the Hints and/or Solutions only as a last resort!

Resources


Day 03

Study & Practice


Day 04

  • Topics: useEffect and React Component Lifecycle

Day 05