presenton/servers/nextjs/store/store.ts
2025-07-19 22:59:02 +05:45

16 lines
621 B
TypeScript

import { configureStore } from "@reduxjs/toolkit";
import presentationGenerationReducer from "./slices/presentationGeneration";
import pptGenUploadReducer from "./slices/presentationGenUpload";
import userConfigReducer from "./slices/userConfig";
export const store = configureStore({
reducer: {
presentationGeneration: presentationGenerationReducer,
pptGenUpload: pptGenUploadReducer,
userConfig: userConfigReducer,
},
});
// Infer the `RootState` and `AppDispatch` types from the store itself
export type RootState = ReturnType<typeof store.getState>;
export type AppDispatch = typeof store.dispatch;