aboutsummaryrefslogblamecommitdiff
path: root/src/app/store.js
blob: f5b8ae3016d9c5cf8abed77b5881d256d03c1963 (plain) (tree)
1
2
3
4
5
6
7
8







                                                              
import { configureStore } from "@reduxjs/toolkit";
import counterReducer from "../features/counter/counterSlice";

export const store = configureStore({
  reducer: {
    counter: counterReducer,
  },
});