CSS
- 22 ответа
- 0 вопросов
10
Вклад в тег
import appReducer from '../reducers';
const rootReducer = (state, action) => {
if (action.type === 'URL_CHANGED') {
state = undefined;
}
return appReducer(state, action);
};