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

{client}

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