How can I access state of another slice in redux with redux-toolkit?

Reducers, by definition, only have access to the section of state that they own. So, if I have {users: usersReducer, posts: postsReducer}, the usersReducer has no access to the posts state slice at all.

See the Redux FAQ entry on “how can I share state between reducers?” for more details.

Leave a Comment