Reputation: 53
I start learn redux-react .Please help me difference between Dispatch and Return in redux-react?Can they replace each other?.
Upvotes: 0
Views: 2719
Reputation: 209
I think you have misunderstood the concept og the dispatch method. Take some time and read the Redux documentation, here specifically for Actions, which is where the dispatch method is being used: http://redux.js.org/docs/basics/Actions.html
Here is an illustration of where the dispatch comes to play.
Upvotes: 4