First Move (11~18) - Code, Learn, Build
🧭 Career CompassDashboardProgress
Loading...
First Move (11~18) - Code, Learn, Build

Structured, level-based technology learning paths from foundational exploration to industry mastery.

Learning Domains

  • Python Programming (Active)
  • Computer Science Core
  • Web Development
  • AI & Machine Learning

Platform Architecture

  • Level-Based Progression
  • Decoupled Content Schema
  • Modular Code Execution Engine
  • Curated Official Resources

© 2026 First Move (11~18) • CODE • LEARN • BUILD. Built with Next.js App Router.

Readability & Accessibility First

← React & Next.js Framework Architecture|Level 1: React Fundamentals & JSX Component Architecture

1. JSX, Virtual DOM & Component Composition

Lesson 1 of 6
Saved Locally (Guest)
Progress
0%

JSX, Virtual DOM & Component Composition

Build your first functional component, understand JSX compilation, and master Virtual DOM reconciliation diffing algorithms.

Learning Objectives & Declarative Rendering

### Learning Objectives - Differentiate between imperative DOM manipulation and React's declarative state-driven model. - Master JSX compilation mechanics into `React.createElement` function calls. - Understand Virtual DOM diffing (reconciliation) and `key` prop heuristics. - Pass immutable data downward using component `props`. --- ### The Declarative UI Paradigm React introduces a declarative model where user interfaces are rendered as pure functions of application state ($UI = f(State)$). Instead of imperatively querying and updating DOM elements manually, developers define component hierarchies, allowing React to compute Virtual DOM diffs and perform minimal DOM updates.
💻 Ready to test your knowledge with code?
Solve the hands-on coding exercise in the interactive code editor.