Create core structure for the app

This commit is contained in:
2020-12-21 00:49:50 +05:30
parent 3b0a212ad4
commit 90ba2410b9
10 changed files with 85 additions and 186 deletions

View File

@@ -1,8 +1,8 @@
import { configureStore } from "@reduxjs/toolkit";
import counterReducer from "../features/counter/counterSlice";
import coreReducer from "../coreSlice";
export default configureStore({
reducer: {
counter: counterReducer,
core: coreReducer,
},
});