0
votes

I can't seem to find any example which shows how to implement an async action using redux-actions library. Have searched their github repo: https://github.com/reduxactions/redux-actions but can't seem to find any example.

Does redux-action even allow you to implement an async action?

Looking for any example of doing async action with redux-thunk.

1

1 Answers

0
votes

Looking at the docs it looks like that library is only meant to create and compose action creators. For asynchronous actions you'll still need to add something to facilitate that. There are a number of different middleware you can work with. Thunks and sagas are two of the more popular ones but there are many.