interface CardProps { url: string title: string description: string } export const Card: React.FC = ({ url, title, description, }: CardProps) => (

{title} →

{description}

)