Top "React-redux" questions

The react-redux package provides the official React bindings for Redux: the `useSelector` and `useDispatch` hooks and the `connect` higher-order component.

Understanding compose functions in redux

I was trying to create a store in redux for which I am currently using following syntax:- const middlewares = [ …

redux react-redux
Warning: This synthetic event is reused for performance reasons happening with <input type="checkbox" />

I've been working on a simple react-redux todo example for a class and I came across several warning messages that …

javascript reactjs react-redux frontend
_react.default.createContext is not a function when using react-redux

I have a problem when adding components to the entry point, this error immediately pops up here, how to fix …

reactjs react-redux react-context
React Material UI - Export multiple higher order components

I'm stuck on exporting material-ui styles with redux connector. Here is my code: import React, { Component } from 'react'; import { connect } …

reactjs redux react-redux material-ui
How to add multiple middleware to Redux?

I have one piece of middleware already plugged in, redux-thunk, and I'd like to add another, redux-logger. How do I …

reactjs redux react-redux middleware redux-thunk
Set value in field in redux form

I have redux form having dropdown and text fields. On dropdown change i have to update the other fields. The …

reactjs react-redux redux-form
"Error: Too many re-renders. React limits the number of renders to prevent an infinite loop."

Hi I have been stuck in a React Function useState. I just want to learn hooks and useState, but I …

reactjs react-redux react-hooks
How do I make an HTTP request in react-redux?

I am just getting started with react and I'm a bit lost. I'm trying to make a login page and …

reactjs redux react-redux jsx
React router private routes / redirect not working

I have slightly adjusted the React Router example for the private routes to play nice with Redux, but no components …

reactjs redux react-router react-redux
Redux state is undefined in mapStateToProps

I am currently following this tutorial. I've hit a bit of a snag involving mapStateToProps in the following code: import …

javascript reactjs redux react-redux immutable.js