Skip to content
Codeloom

← Back to React overview

React tutorials

65 articles · page 4 of 4

Hand-written tutorials, ordered as a recommended learning path.

  1. 61 React Router Learn React Router's modern data APIs. Install, create a browser router, define routes, navigate with Link and useNavigate, and use loaders and actions for data.
  2. 62 Server Components A clear, practical explanation of React Server Components: the runtime model, the boundary between server and client, data fetching, and the tradeoffs.
  3. 63 Suspense & Lazy Use React.lazy and Suspense to code-split a React app, design fallback UI, place boundaries thoughtfully, and understand how Suspense extends to data fetching.
  4. 64 useMemo & useCallback A practical guide to React's useMemo and useCallback hooks, covering referential equality, when memoization helps performance, when it backfires, and how to profile first.
  5. 65 useReducer Understand React's useReducer hook, its signature, action shape, when to migrate from useState, and how to build a small state machine pattern for predictable UI logic.