Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 602 Bytes

README.md

File metadata and controls

17 lines (12 loc) · 602 Bytes

#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?

  1. npm install
  2. npm start

How to use it?

  1. Use the four buttons to increment or decrement the counter value
  2. See the updated reulted as soon as you hit one of these buttons
  3. Hit the "Store couter button" to save the current counter value and view it as list of cards below
  4. Click on cross arrows to delete the specific card

The state is updated using immutable approach.