const initialState = {}; const apiReducer = (state = initialState, action) => { switch (action.type) { default: return state; } }; export default apiReducer;