gift: update UI and voucher & items BS

This commit is contained in:
2025-12-30 11:09:52 +03:00
parent f3b8bdba63
commit 3ed5c4d5d6
17 changed files with 434 additions and 10 deletions

View File

@@ -0,0 +1,14 @@
import { Card, Image } from "antd";
import { EGiftCard } from "../type";
export default function ECardList({ eGiftCards }: { eGiftCards: EGiftCard[] }) {
return (
<>
{eGiftCards.map((card: EGiftCard) => (
<Card key={card.id}>
<Image src={card.imageURL} alt={card.image} />
</Card>
))}
</>
);
}