"use client"; import { useTheme } from "next-themes"; import { colors } from "@/lib/colors"; import { useConfig } from "@/hooks/use-config"; import { LineChart, Line, CartesianGrid, XAxis, YAxis, Tooltip, ResponsiveContainer, } from "recharts"; import CustomTooltip from "./custom-tooltip"; const ConnectNulls = ({ height = 300 }) => { const { theme: mode } = useTheme(); const data = [ { name: "Page A", uv: 4000 }, { name: "Page B", uv: 3000 }, { name: "Page C", uv: 2000 }, { name: "Page D" }, { name: "Page E", uv: 1890 }, { name: "Page F", uv: 2390 }, { name: "Page G", uv: 3490 }, ]; return ( <>
); }; export default ConnectNulls;