Guest User

Untitled

a guest
Feb 25th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. case ADD_TODO:
  2. return Object.assign({}, state, {
  3. todos: [
  4. ...state.todos,
  5. {
  6. text: action.text,
  7. completed: false
  8. }
  9. ]
  10. })
Add Comment
Please, Sign In to add comment