const autoCompleteReducer = (state = [], action) => { switch (action.type) { case "AUTOCOMPLETE_ADD": return action.payload; case "AUTOCOMPLETE_CLEAR": return (state = []); default: return state; } }; export default autoCompleteReducer;