chornous.dev
All writing

React 19.2: Activity, Effect Events, and calmer UI state

React 19.2 adds primitives that make hidden UI, effect logic, and performance analysis easier to model in large applications.

VCVolodymyr Chornous··1 min read·React 19.2

React 19.2 is interesting because it gives names to patterns teams were already approximating. Activity addresses the common "hide but preserve state" problem without forcing everything through conditional rendering. useEffectEvent separates event-like logic from effect synchronization, which should reduce both stale closures and dependency-array cargo culting.

The release also continues the theme of making performance easier to inspect. Better tracks and clearer scheduling signals help teams reason about what React is doing instead of guessing from flame charts alone.

The product-level impact is subtle but meaningful. Tabs, panels, modals, background routes, and offscreen workflows can keep state without running all effects all the time. Effects can become smaller and more honest about what actually synchronizes with an external system.

Adoption should still be intentional:

  • Use Activity where preserving hidden UI state is a product requirement.
  • Use Effect Events to simplify effects that mix subscriptions with changing callbacks.
  • Prefer measurement before refactoring stable render paths.

React 19.2 is not a visual release. It is a maintainability release for teams with real UI state.

Official source: React 19.2.

VC

Written by

Volodymyr Chornous

Get in touch