import { CONTACT } from 'app/modules/contact/store/contact.constants'; import { AnyAction } from 'redux'; import { ContactState } from 'app/modules/contact/store/contact.types'; export const defaultContactPageContent: ContactState = { sections: [], }; const contactReducer = (state = defaultContactPageContent, action: AnyAction = { type: '' }) => { switch (action.type) { case CONTACT.SET_CONTACTS: return { ...state, ...action.payload, }; default: return state; } }; export { contactReducer };