📄️ Introduction
In this section, you will learn the Basics of React, including:
📄️ What is React?
React logo
📄️ JavaScript Modules
Before we start to create React projects, it is important to understand how JavaScript modules works.
📄️ Create Project
General
📄️ React Component
If you look at some older React code, you might still see class components. The React.Component is abstract base class that will be typically subclassed by your own components.
📄️ Props
Nested components
📄️ State
State is component specific "memory" and it triggers component re-render when its value is changed.
📄️ User Input
In this section, you will learn how to read user input in React components