File size: 367 Bytes
79278ec
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import { configureStore } from "@reduxjs/toolkit";
import authSlice from "../shared/hooks/useAuth/reducer";
import requestSlice from "../shared/hooks/useAbbreviations/reducer";

export const store = configureStore({
  reducer: { auth: authSlice, request: requestSlice },
  middleware: (getDefaultMiddleware) => getDefaultMiddleware({ serializableCheck: false }),
});