Guest User

Untitled

a guest
Feb 25th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. function todoApp(state = initialState, action) {
  2. switch (action.type) {
  3. case ADD_TODO:
  4. return Object.assign({}, state, {
  5. todos: [
  6. ...state.todos,
  7. {
  8. text: action.text,
  9. completed: false
  10. }
  11. ]
  12. })
  13. default:
  14. return state
  15. }
  16. }
Add Comment
Please, Sign In to add comment