Advertisement
Guest User

Untitled

a guest
Dec 16th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. case CHANGE_NOTE_TITLE: {
  2.   const newNotes = state.notes;
  3.   newNotes[action.payload.index].noteTitle = action.payload.newTitle;
  4.   return {
  5.     ...state,
  6.     notes: newNotes,
  7.   };
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement