Skip to content

Commit a0e8c93

Browse files
committed
remove reducers console.log
1 parent 9d16e74 commit a0e8c93

File tree

3 files changed

+0
-3
lines changed

3 files changed

+0
-3
lines changed

src/reducers/counter1/counter1.reducers.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
export const counter1initialState = 0;
22

33
export function counter1Reducers(state, action) {
4-
console.log(state, action);
54
switch (action.type) {
65
case "INCREMENT_COUNTER_1":
76
return state + 1;

src/reducers/counter2/counter2.reducers.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
export const counter2initialState = 0;
22

33
export function counter2Reducers(state, action) {
4-
console.log(state, action);
54
switch (action.type) {
65
case "INCREMENT_COUNTER_2":
76
return state + 1;

src/reducers/ui/ui.reducers.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ export const uiInitialState = {
33
};
44

55
export function uiReducers(state, action) {
6-
console.log(state, action);
76
switch (action.type) {
87
case "IS_WORKING":
98
return {

0 commit comments

Comments
 (0)