0
I’m using Redux and Redux-saga in an application with React and with doubt when it comes to displaying the load to the user when a saga is launched. I don’t know if this is good practice, but I was thinking about the possibility of shooting 2 actions. 1 for load display and another to trigger the saga. It is possible to fire two types of action at the same time?
Thanks @jan, after searching I found that within the saga I can fire an action for the load and after the return of the ajax I can fire another to hide the load.
– Miguel Batista