We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55de283 commit c0be86fCopy full SHA for c0be86f
app/src/redux/reducers/rootReducer.js
@@ -1,4 +1,4 @@
1
-import { combineReducers } from 'redux';
+import { combineReducers } from '@reduxjs/toolkit';
2
3
// Need to import each slice which will be combined in the rootReducer
4
import darkModeReducer from './slice/darkModeSlice.ts';
@@ -15,7 +15,7 @@ const rootReducer = combineReducers({
15
contextSlice: contextReducer,
16
appState: appStateReducer,
17
styleSlice: styleReducer,
18
- roomCodeSlice: roomCodeReducer
+ roomCodeSlice: roomCodeReducer,
19
});
20
21
export default rootReducer;
0 commit comments