Tag view

#react18

Cross-subject tag search for related interview cards.

Clear

Results update as you type. Press / to jump straight into search.

Tagged with react18

2 cards

React Hard Theory

React internals: Fiber, concurrent rendering, StrictMode, and why effects run twice in development

Fiber is React's internal architecture for scheduling and prioritizing work, and StrictMode helps surface unsafe patterns in development.

  • Fiber enables more flexible rendering work
  • Concurrent rendering changes scheduling, not your component API directly
  • StrictMode may intentionally double-invoke some logic in dev

React internals: Fiber, concurrent rendering, StrictMode, and why effects run twice in development

React Hard Theory

SSR, CSR, hydration, hydration mismatch, SSG, ISR, and React 18 changes

React can render on the client, the server, or ahead of time, and hydration connects server-rendered HTML with interactive client behavior.

  • CSR renders mostly in the browser
  • SSR sends initial HTML from the server
  • Hydration mismatch happens when client and server output differ

SSR, CSR, hydration, hydration mismatch, SSG, ISR, and React 18 changes