ReactJs : What is the proper way of accessing the state data in the root component where the link between React and Redux has been implemented?
问题 DISCLAIMER: This error has been mentioned on stackoverflow before but my case is different. I have had a problem with the user login which I have explained in this stackOverFlow question. I invite you to go and quickly take a look. So as I mentioned in that question in my root file I have this: App.js class App extends Component { render() { const authLinks = ( <Switch> <Route exact path="/" name="Login Page" render={props => <Login {...props} />} /> <Route exact path="/404" name="Page 404"