react-redux-realworld-example-app
react-redux-realworld-example-app copied to clipboard
Exemplary real world application built with React + Redux
Please upgrade package dependencies. @EricSimons
https://github.com/gothinkster/react-redux-realworld-example-app/blob/cde269d554ac2f1f298c56dbeff1fbd12ee08b92/src/components/App.js#L15 Hello! I am wonder why do you use store import here. If you use Provider you already have access to store. Maybe there is some reason why you do...
When the first action of type UPDATE_FIELD_AUTH is triggered, a warning with the message "A component is changing an uncontrolled input of type email to be controlled. Input elements should...
Where is the header being told it is green or where are the stylings in this project coming from? where's the most efficient or proper place to adjust the stylings...
The readme says to edit the `src/agent.js` to change the `API_ROOT` to point to a different backend api instance. We want to set things up so that `API_ROOT` can be...
A production build outputs: > ---> Pruning the development dependencies > -- > | removed 829 packages in 7.631s The `start` command then fails as both `cross-env` and `react-scripts` have...
This code: ``` const mapDispatchToProps = dispatch => ({ onLoad: payload => dispatch({ type: ARTICLE_PAGE_LOADED, payload }), onUnload: () => dispatch({ type: ARTICLE_PAGE_UNLOADED }) }); class Article extends React.Component {...
Shouldn't this snippet be loading the article pointed to by `nextProps.match.params.slug` rather than `this.props.match.params.slug`. I'm admittedly using this app as a reference while learning react but surely `nextProps...` is pointing...