import {
  UPDATE_REPORT
} from './actionTypes';

export const updateReport = () => {
  return {
    type: UPDATE_REPORT,
  };
};