Guest User

Untitled

a guest
Jan 18th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. // Define our reducer
  2. const counter = (state = 0, action) => {
  3. switch (action.type) {
  4. case 'INCREMENT':
  5. return state + 1
  6. case 'DECREMENT':
  7. return state - 1
  8. default:
  9. return state
  10. }
  11. }
Add Comment
Please, Sign In to add comment