client/src/actions/notesActions.js
changeset 79 772b73e31069
parent 78 49c5ea36d0a4
child 80 b3a02ea6d097
--- 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
+  };
+}