--- 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
+ };
+}