71 lines
3.2 KiB
JavaScript
71 lines
3.2 KiB
JavaScript
|
|
import { configureStore } from '@reduxjs/toolkit';
|
||
|
|
import configtypePage from '../Features/ConfigTypePage/ConfigTypePage';
|
||
|
|
import configmasterPage from '../Features/ConfigMasterPage/ConfigMasterPage';
|
||
|
|
import exceluploadPage from '../Features/ExcelUploadPage/ExcelUploadPage';
|
||
|
|
import centerPage from '../Features/AppPage/CenterPage';
|
||
|
|
import productPage from '../Features/ProductPage/ProductPage';
|
||
|
|
import ThemeChange from '../Features/ThemeChange/ThemeChange';
|
||
|
|
import StockSlice from '../Features/StockMaster/StockMaster';
|
||
|
|
import uiComponentPage from '../Features/UiComponentPage/ComponentPage';
|
||
|
|
import uiPrintPage from '../Features/UiPrintPage/PrintPage';
|
||
|
|
import BookingData from '../Features/BookingScreen/BookingData/BookingData';
|
||
|
|
import settingPage from '../Features/PreferenceMaster/PreferenceMaster';
|
||
|
|
import HoldOption from '../Features/BookingScreen/HoldOption/HoldOption';
|
||
|
|
import ExtraCharges from '../Features/ExteraCharges/ExtraCharges';
|
||
|
|
import BranchLogin from '../Features/BrachLogin/BranchLogin';
|
||
|
|
import addCustomer from '../Features/BookingScreen/Customer/addCustomer';
|
||
|
|
import Catalogue from '../Features/ProductCatlog/ProductCatlogue';
|
||
|
|
import KiosePageChange from '../Features/Kiosk/kiosk';
|
||
|
|
import KioskBookingData from '../Features/BookingScreen/BookingData/KioskBookingData';
|
||
|
|
import PreOrder from '../Features/BookingScreen/PreOrder/PreOrder';
|
||
|
|
import WholeSalePage from '../Features/WholeSale/WholesaleData';
|
||
|
|
import Offer from '../Features/Offer/Offer';
|
||
|
|
import BookingCloseRetail from '../Features/Payment/PaymentReceivedRetail/PaymentReceivedRetail';
|
||
|
|
import Pricing from '../Features/BookingScreen/Pricing/Pricing';
|
||
|
|
import StockPriceUpdate from '../Features/StockPriceUpdate/StockPriceUpdateMaster';
|
||
|
|
import taxSlice from '../Features/Tax/Tax';
|
||
|
|
import Paymentoptions from '../Features/Payment/Paymentoptions/Paymentoptions';
|
||
|
|
import userAccount from '../Features/UserAccount/userData.js';
|
||
|
|
import OtherServices from "../Features/OtherServices/OtherServices.js"
|
||
|
|
import BookingOFferNew from '../Features/Offer/Offernew/BookingOffernew.js';
|
||
|
|
import SlotManagement from '../Features/SlotManagement/SlotManagement.js';
|
||
|
|
const store = configureStore({
|
||
|
|
reducer: {
|
||
|
|
Paymentoptions: Paymentoptions,
|
||
|
|
Offer: Offer,
|
||
|
|
centerPage: centerPage,
|
||
|
|
configtypePage: configtypePage,
|
||
|
|
configmasterPage: configmasterPage,
|
||
|
|
exceluploadPage: exceluploadPage,
|
||
|
|
productPage: productPage,
|
||
|
|
theme: ThemeChange,
|
||
|
|
Stock: StockSlice,
|
||
|
|
uiComponentPage: uiComponentPage,
|
||
|
|
uiPrintPage: uiPrintPage,
|
||
|
|
BookingData: BookingData,
|
||
|
|
settingPage: settingPage,
|
||
|
|
HoldOption: HoldOption,
|
||
|
|
ExtraCharges: ExtraCharges,
|
||
|
|
BranchLogin: BranchLogin,
|
||
|
|
addCustomer: addCustomer,
|
||
|
|
Catalogue: Catalogue,
|
||
|
|
KiosePageChange: KiosePageChange,
|
||
|
|
KioskBookingData: KioskBookingData,
|
||
|
|
PreOrder: PreOrder,
|
||
|
|
WholeSalePage: WholeSalePage,
|
||
|
|
BookingCloseRetail: BookingCloseRetail,
|
||
|
|
Pricing: Pricing,
|
||
|
|
StockPriceUpdate: StockPriceUpdate,
|
||
|
|
taxSlice: taxSlice,
|
||
|
|
userAccount: userAccount,
|
||
|
|
OtherServices: OtherServices,
|
||
|
|
BookingOFferNew: BookingOFferNew,
|
||
|
|
SlotManagement: SlotManagement,
|
||
|
|
},
|
||
|
|
middleware: (getDefaultMiddleware) =>
|
||
|
|
getDefaultMiddleware({
|
||
|
|
serializableCheck: false, // Completely disable serializable check
|
||
|
|
}),
|
||
|
|
});
|
||
|
|
export default store;
|