Ankilan/src/reducers/api-reducer.js

16 lines
250 B
JavaScript
Raw Normal View History

2020-03-13 20:45:31 +00:00
const initialState = {
word: '',
translatedObject: {},
wordSoundLink: '',
dictionaryInfo: {},
};
2020-03-05 22:16:34 +00:00
const apiReducer = (state = initialState, action) => {
switch (action.type) {
default:
return state;
}
};
export default apiReducer;