Skip to main content

React API Overview

The React API is organized around components, hooks, and built-in utilities.

Official docs

Core Exports

ExportPurpose
createElementLow-level element creation
ComponentClass component base
FragmentGroup elements without extra DOM nodes
StrictModeDevelopment-time checks
SuspenseDeclarative loading boundaries

React 19 Highlights

  • Improved Server Components integration
  • Actions and form handling with useActionState
  • Document metadata support in components
  • Ref as a prop (no more forwardRef in many cases)

Sections