import React from "react"; import './card.css'; type Props = { cardTitle: string, cardSubTitle?: string cardContent: string, buttonShow?: boolean, buttonLabel?: string, image?: string } const Card = (props:Props) => { const {cardTitle, cardContent, buttonShow, buttonLabel, image, cardSubTitle} = props; return (
{cardContent}