// Component with anti-patterns import React from 'react'; interface CardProps { title: string; value: string; } export function Card({ title, value }: CardProps) { return (

{title}

{value}

); }