"use client"; import { Bar, BarChart, ResponsiveContainer, XAxis, YAxis, LineChart, Line } from "recharts"; // const data = [ // { // name: "Jan", // total: Math.floor(Math.random() * 5000) + 1000, // }, // { // name: "Feb", // total: Math.floor(Math.random() * 5000) + 1000, // }, // { // name: "Mar", // total: Math.floor(Math.random() * 5000) + 1000, // }, // { // name: "Apr", // total: Math.floor(Math.random() * 5000) + 1000, // }, // { // name: "May", // total: Math.floor(Math.random() * 5000) + 1000, // }, // { // name: "Jun", // total: Math.floor(Math.random() * 5000) + 1000, // }, // { // name: "Jul", // total: Math.floor(Math.random() * 5000) + 1000, // }, // { // name: "Aug", // total: Math.floor(Math.random() * 5000) + 1000, // }, // { // name: "Sep", // total: Math.floor(Math.random() * 5000) + 1000, // }, // { // name: "Oct", // total: Math.floor(Math.random() * 5000) + 1000, // }, // { // name: "Nov", // total: Math.floor(Math.random() * 5000) + 1000, // }, // { // name: "Dec", // total: Math.floor(Math.random() * 5000) + 1000, // }, // ]; interface OverViewProps{ graphType:string; data: {name: string, value: number}[]; } export function Overview(props: OverViewProps) { return ( {props.graphType === "line" ? ( `$${value}`} /> ) : ( `$${value}`} /> )} ); }