Posts tagged “state management”
5 posts found
React 19.2 Activity Component: Keeping Unmounted Trees Alive for Faster Tab Switching
June 19, 2026
React 19.2's Activity component preserves unmounted component state without CSS hacks. Learn when to use it for forms, video players, and dashboards—and when display:none still wins.
Next.js App Router: Layouts vs Templates Explained
May 17, 2026
Most Next.js routing problems stem from choosing the wrong wrapper component. Learn exactly when to use layouts versus templates, and why the distinction matters for state persistence and performance.
Jotai: Atomic State Management for React
May 16, 2026
Most React state problems stem from choosing the wrong abstraction. Jotai's atomic approach solves composition, performance, and testability issues that Context API and Redux can't handle elegantly.
Zustand vs Redux Toolkit: Modern State Management Compared
May 14, 2026
A practical comparison of Zustand and Redux Toolkit for React state management, including real code examples, bundle size metrics, and guidance on choosing the right tool for your project.
5 Critical Tips for Composing Event Handler Functions in React
May 17, 2020
We will be going over 5 critical tips to compose event handlers in react. This post will not cover everything that is possible, but it will cover important ways to compose event handlers that every react developer should know, minimally