Skip to content

Commit 331d31d

Browse files
DON'T DELETE/MERGE
1 parent f0c9fc5 commit 331d31d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

main.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,14 @@ const store = createStore(rootReducer,
1818
persistedState,
1919
composeWithDevTools(
2020
applyMiddleware(
21-
createLogger({ collapsed: true })
21+
createLogger({ collapsed: false })
2222
)
2323
)
2424
);
2525

2626
store.subscribe(() => {
27-
var c = "123" + "333"
27+
var c = "123" + "333" + "456"
28+
console.log(c)
2829
saveState(store.getState());
2930
});
3031

0 commit comments

Comments
 (0)