| 1234567891011121314151617 |
- "use client";
- import { useAppSelector,useAppDispatch } from "@/store/hooks";
- // 金额明细
- export default function PromotionsDetails() {
- const cartDetail = useAppSelector((state) => state.cartDetail);
- const {cart, loading, error} = cartDetail;
- return (
- <div className="">
- </div>
- );
- }
|