import { CALENDAR } from 'app/modules/calendar/store/calendar.constants'; import { CalendarState } from './calendar.types'; import { AnyAction } from 'redux'; export const defaultCalendarState: CalendarState = { events: [], }; const calendarReducer = (state = defaultCalendarState, action: AnyAction = { type: '' }) => { switch (action.type) { case CALENDAR.SET_EVENTS: return { ...state, events: action.payload, }; default: return state; } }; export { calendarReducer };