import { create } from "zustand"; export const useCheckout = create((set) => ({ products : null, checkWeigth : false, hasFlashSale : false, checkoutValidation : false, biayaKirim : 0, etd : null, setCheckWeight : (checkWeigth) => set({ checkWeigth }), setHasFlashSale : (hasFlashSale) => set({ hasFlashSale }), setCheckoutValidation : (checkoutValidation) => set({ checkoutValidation }), setBiayaKirim : (biayaKirim) => set({ biayaKirim }), setProducts : (products) => set({ products }), }))