import React from "react"; export interface downloadCardProps { client: string; imgUrl: string; url: string; imgUrl2: string; url2: string; notes: string; buttonText: string; } export const DownloadCard = ({ client, imgUrl, url, imgUrl2, url2, notes, buttonText, }: downloadCardProps): JSX.Element => { return (

{client}

{buttonText ? ( {buttonText} ) : (
img1 img2
)}
{notes ? notes : null}
); }; export const PlaceholderCard = (): JSX.Element => { return (
 
); };