import { IonCard, IonCardSubtitle, IonCardTitle, IonCol, IonRow } from "@ionic/react"; import { Plus } from "react-iconly"; import styles from "./CoffeeCard.module.css"; const CoffeeCardOffer = props => { const { offer } = props; return ( coffee
{ offer.title }

{ offer.description }

); } export default CoffeeCardOffer;