feat: payment & customer

This commit is contained in:
ferdiansyah783
2025-08-07 14:31:42 +07:00
parent a72a64215a
commit a5d22db27b
35 changed files with 2033 additions and 599 deletions
+3 -1
View File
@@ -3,11 +3,13 @@ import { configureStore } from '@reduxjs/toolkit'
import productReducer from '@/redux-store/slices/product'
import customerReducer from '@/redux-store/slices/customer'
import paymentMethodReducer from '@/redux-store/slices/paymentMethod'
export const store = configureStore({
reducer: {
productReducer,
customerReducer
customerReducer,
paymentMethodReducer
},
middleware: getDefaultMiddleware => getDefaultMiddleware({ serializableCheck: false })
})