"use client" import { motion } from "framer-motion" import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card" import { BarChart, Bar, XAxis, YAxis, CartesianGrid, Tooltip, ResponsiveContainer, Legend } from "recharts" interface MonthlyData { month: string leads: number closed: number } interface LeadsPerMonthChartProps { data: MonthlyData[] } export function LeadsPerMonthChart({ data }: LeadsPerMonthChartProps) { return ( Leads Per Month
( {value} )} />
) }