This is the second of a series of projects. My goal is to learn how to build reliable React apps using React and many of the tools in its ecosystem.
In react-records project I showed my record collection fetching the data from the Discogs API. In this project I want to introduce Redux to manage the state of the app.
Image requests to the Discogs API require authentication. To be able to see record covers is necessary to authenticate. Fill in AUTH_TOKEN with a valid token in src/data/api/utils.
- Add Redux to a React application
- Manage the state of the Redux store
- Reducer Composition with combineReducers()
- Generate Containers with connect()
In the project directory, you can run:
$ npm install
$ npm start
This project was bootstrapped with Create React App.