In React-Redux, the hook that allows you to extract data from the Redux store is ________.

  • connect
  • mapDispatchToProps
  • useEffect
  • useSelector
In React-Redux, the hook used to extract data from the Redux store is useSelector. This hook allows you to select data from the store's state and use it in your components. mapDispatchToProps is used for dispatching actions, connect is a higher-order component for connecting React components to the store, and useEffect is used for side effects.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *