Redux Thunk Testing

In redux, a thunk is a function that returns a function. Within that function, you can then perform more complex redux state management. For example, you could dispatch multiple actions and include control flow statements.

redux-thunk is a middleware.

Last updated