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 (
); }; export const PlaceholderCard = (): JSX.Element => { return ( ); };