import React from "react"; import Link from "next/link"; interface CartRecommendedProductCardProps { image: string; discount: string; price: string; oldPrice: string; title: string; brand: string; articleNumber?: string; brandName?: string; artId?: string; } const CartRecommendedProductCard: React.FC = ({ image, discount, price, oldPrice, title, brand, articleNumber, brandName, artId, }) => (
{discount}
{price}
{oldPrice}
{title}
{brand}
Купить
); export default CartRecommendedProductCard;