Files
DentalManagementE/apps/Frontend/src/redux/store.ts
2025-06-27 23:10:02 +05:30

12 lines
322 B
TypeScript

import { configureStore } from "@reduxjs/toolkit";
import seleniumTaskReducer from "./slices/seleniumTaskSlice";
export const store = configureStore({
reducer: {
seleniumTask: seleniumTaskReducer,
},
});
export type RootState = ReturnType<typeof store.getState>;
export type AppDispatch = typeof store.dispatch;