PromotionsDetails.tsx 324 B

1234567891011121314151617
  1. "use client";
  2. import { useAppSelector,useAppDispatch } from "@/store/hooks";
  3. // 金额明细
  4. export default function PromotionsDetails() {
  5. const cartDetail = useAppSelector((state) => state.cartDetail);
  6. const {cart, loading, error} = cartDetail;
  7. return (
  8. <div className="">
  9. </div>
  10. );
  11. }