client/src/actions/notesActions.js
changeset 79 772b73e31069
parent 78 49c5ea36d0a4
child 80 b3a02ea6d097
equal deleted inserted replaced
78:49c5ea36d0a4 79:772b73e31069
    41         rollback: { type: types.NOOP }
    41         rollback: { type: types.NOOP }
    42       }
    42       }
    43     }
    43     }
    44   };
    44   };
    45 }
    45 }
       
    46 
       
    47 export const deleteNote = (note) => {
       
    48   return {
       
    49     type: types.DELETE_NOTE,
       
    50     note
       
    51   };
       
    52 }