import { configureStore } from "@reduxjs/toolkit"; import { authReducer } from "../features/auth/slice"; export const store = configureStore({ reducer: { auth: authReducer, }, }); export type RootState = ReturnType; export type AppDispatch = typeof store.dispatch; export type AppReduxStore = typeof store;