interface StatCardProps { label: string; value: React.ReactNode; } export default function StatCard({ label, value }: StatCardProps) { return (
{label} {value}
); }