diff -r 49c5ea36d0a4 -r 772b73e31069 client/src/actions/notesActions.js --- a/client/src/actions/notesActions.js Thu Jun 22 12:37:53 2017 +0200 +++ b/client/src/actions/notesActions.js Fri Jun 23 10:16:49 2017 +0200 @@ -43,3 +43,10 @@ } }; } + +export const deleteNote = (note) => { + return { + type: types.DELETE_NOTE, + note + }; +}