Category: React
-
How to extend props when using component composition
In React/Typescript it is common to extend or decorate an existing component to add some features or tweak its behavior. When doing so composition is a common (and recommended) pattern. But when doing so, how do y
-
Multiple store updates in a redux-observable epic
So, you’ve run into the “how do I dispatch multiple store updates within one epic” issue? Well, if you’re using Redux-observable, you’re in luck.