nzediegwu1/EventManager

View on GitHub
client/src/actions/eventActions.js

Summary

Maintainability
A
0 mins
Test Coverage
import { POPULATE_EVENTS, SET_EVENT_DETAIL } from '../constants/actionTypes';

export const populateEvents = eventList => ({
  type: POPULATE_EVENTS,
  payload: eventList,
});
export const setEventDetail = event => ({
  type: SET_EVENT_DETAIL,
  payload: event,
});