Personal Dashboard

notes.js 391B

1234567
  1. import { createAction } from 'redux-actions'
  2. export const ADD_NOTE = createAction('ADD_NOTE')
  3. export const REMOVE_NOTE = createAction('REMOVE_NOTE')
  4. export const UPDATE_NOTE = createAction('UPDATE_NOTE')
  5. export const SELECT_NOTE = createAction('SELECT_NOTE')
  6. export const UPDATE_SELECTED_NOTE = createAction('UPDATE_SELECTED_NOTE')
  7. export const UNSELECT_NOTE = createAction('UNSELECT_NOTE')