redux, redux-toolkit, react-rrdux
This commit is contained in:
11
store/store.js
Normal file
11
store/store.js
Normal file
@@ -0,0 +1,11 @@
|
||||
// store/store.js
|
||||
import { configureStore } from "@reduxjs/toolkit";
|
||||
import variablesReducer from "./variablesSlice";
|
||||
|
||||
const store = configureStore({
|
||||
reducer: {
|
||||
variables: variablesReducer,
|
||||
},
|
||||
});
|
||||
|
||||
export default store;
|
||||
Reference in New Issue
Block a user