Search⌘ K

The State Object

Explore how to effectively design and manage the state object for a Redux-powered React app using the Skypey chat application as a practical example. Understand why structuring the state correctly is crucial for reducing complexity and maintaining clear data flow in your app.

We'll cover the following...

In the previous section, we were done making the skeleton of our Skypey app. Let’s move on to the most essential part of our app: the state object.

The way React apps are created is that your entire App is mostly a function of the state object.

Whether you’re creating a sophisticated ...