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