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