import css from "../css/Card.module.css"; interface CardProps { cardName: string, imgUrl: string, index: number, onCardClick: (index: number) => void } const Card = ( { cardName, imgUrl, index, onCardClick }: CardProps) => { return (