Search⌘ K
AI Features

What to Put in the State

Learn how to evaluate which data should be placed in Redux state by exploring criteria like data persistence across refreshes, route changes, and shared UI usage. Understand when to keep data out of state to reduce complexity and enhance the user experience.

We'll cover the following...

A common issue when working with Redux is deciding what information goes inside our state and what is left outside, either in React’s state, in Angular’s services, or other storage methods of different UI ...