Advertisement
Guest User

Untitled

a guest
Aug 17th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. function todoApp(state = initialState, action) {
  2. switch (action.type) {
  3. case SET_VISIBILITY_FILTER:
  4. return Object.assign({}, state)
  5. ...
  6.  
  7. function todoApp(state = initialState, action) {
  8. switch (action.type) {
  9. case SET_VISIBILITY_FILTER:
  10. return { ...state }
  11. ...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement