August 2017
Beginner
374 pages
10h 41m
English
The first thing to think about when developing a Redux application is the application state. You have already learned about this in the first chapter. You might not know the full state in the beginning—that's fine. We will make sure to design the state in an extendable way. Our blog consists of users, posts, and a filter.
The basic structure of our state is going to look as follows:
{
users: [...],
posts: [...],
filter: ...
}
Read now
Unlock full access