import React from "react";
export const ProductCard = (props) => {
const { title, img, offer } = props;
return (
<>
>
);
};
export const ProductCard2 = (props) => {
const { title, Detail } = props;
return (
<>
{title}
{
Detail.map((item) => (
{item.offer}
))
}
See all Offers
>
);
};