#Basic redux concepts implemented in react app
In this app the state is maintained using redux library.
There are two reducers used and combined to one root reducer in index.js file.
How to run this app?
- npm install
- npm start
How to use it?
- Use the four buttons to increment or decrement the counter value
- See the updated reulted as soon as you hit one of these buttons
- Hit the "Store couter button" to save the current counter value and view it as list of cards below
- Click on cross arrows to delete the specific card
The state is updated using immutable approach.