...

/

Dynamic Action Creators

Dynamic Action Creators

Let's learn how to create dynamic action creators.

We'll cover the following...

In some cases, action creators might contain logic that emits different actions based on the input parameters. As long as no asynchronous code or other external entities like localStorage are touched, we can easily test the logic by providing different input parameters to the action creator and verifying that it creates the correct object every time:

// An action creator that modifies the input
export const
...