React is a JavaScript library for rendering user interfaces (UI). UI is built from small units like buttons, text, and images. React lets you combine them into reusable, nestable components. From web sites to phone apps, everything on the screen can be broken down into components. In this chapter, you’ll learn to create, customize, and conditionally display React components.
- 1.1 - Introduction to React
- 1.2 - React Installation & Development Environment Setup
- 1.3 - How to works Virtual Dom
- 1.4 - Basics of React Components: Your first component
- 1.5 - Basics of React Components: Importing & Exporting Components
- 1.6 - Basics of JSX: React's Markup - Writing Markup with JSX
- 1.7 - Basics of JSX: Reacts Markup - JavaScript in JSX with Curly Braces (missing note ⚔️)
- 1.8 - Understanding Props - Passing Props to a Component (missing note ⚔️)
- 1.9 - Conditional Rendering (missing note ⚔️)
- 1.10 - Rendering Lists (missing note ⚔️)
- 1.11 - Pure Components: Keeping Components Pure (missing note ⚔️)
- 1.12 - Understanding Complex React UI (missing note ⚔️)
- 1.13 - Project Tutorial - Tic-Tac-Toe Game (missing note ⚔️)