diff -r 772b73e31069 -r b3a02ea6d097 client/src/actions/notesActions.js --- a/client/src/actions/notesActions.js Fri Jun 23 10:16:49 2017 +0200 +++ b/client/src/actions/notesActions.js Fri Jun 23 11:16:34 2017 +0200 @@ -50,3 +50,11 @@ note }; } + +export const updateNote = (note, data) => { + return { + type: types.UPDATE_NOTE, + note, + data + }; +}