Routing Patterns
Learn about routing patterns in redux.
We'll cover the following...
At its core, Redux is all about actions that change the state. Although its architecture wasn’t directly inspired by the concepts of event sourcing and the command-query separation principle, Redux’s fundamentals are close and allow us to use existing principles and patterns to handle side effects.
There are two main types of messaging patterns to consider when working with Redux: routing patterns and transformation patterns.
You can find more information on the patterns described ...