Manuals / React Basics / Ch 1

StartBeginner25 min read

1. Why React

React Basics · 16 pages source format

UI as a function of state — the mental model that unlocks everything else.

What you'll learn

  • Components
  • Declarative UI
  • When not to use React

Key idea

React lets you describe UI from state instead of manually mutating the DOM. Components compose like Lego.

Quick check

React is primarily about…

Do this now

Write 3 notes on: Why React.

Clear?

Practice

Create a Vite React app and render a Hello component.

Starter
export default function Hello({ name }) {
  return <h1>Hello {name}</h1>
}

Do this now

Commit one file practicing Why React.

Clear?

Checklist