blob: f5b8ae3016d9c5cf8abed77b5881d256d03c1963 (
plain) (
tree)
|
|
import { configureStore } from "@reduxjs/toolkit";
import counterReducer from "../features/counter/counterSlice";
export const store = configureStore({
reducer: {
counter: counterReducer,
},
});
|