import React from "react"; export const ProductCard = (props) => { const { title, img, offer } = props; return ( <>

{title}

{offer}
); }; export const ProductCard2 = (props) => { const { title, Detail } = props; return ( <>

{title}

{ Detail.map((item) => (

{item.offer}

)) }
See all Offers
); };