There was an error while loading. Please reload this page.
1 parent 9d16e74 commit a0e8c93Copy full SHA for a0e8c93
src/reducers/counter1/counter1.reducers.js
@@ -1,7 +1,6 @@
1
export const counter1initialState = 0;
2
3
export function counter1Reducers(state, action) {
4
- console.log(state, action);
5
switch (action.type) {
6
case "INCREMENT_COUNTER_1":
7
return state + 1;
src/reducers/counter2/counter2.reducers.js
export const counter2initialState = 0;
export function counter2Reducers(state, action) {
case "INCREMENT_COUNTER_2":
src/reducers/ui/ui.reducers.js
@@ -3,7 +3,6 @@ export const uiInitialState = {
};
export function uiReducers(state, action) {
8
case "IS_WORKING":
9
return {
0 commit comments