+1 vote
in Redux by
Which of the following is react-Redux helper method?

a) help()

b) assist()

c) view()

d) connect()

1 Answer

0 votes
by

Ans : D

Explanation: You can dispatch an action by directly using store.dispatch(). However, it is more likely that you access it with react-Redux helper method called connect(). You can also use bindActionCreators() method to bind many action creators with dispatch function.

...