From ec357bb9fae40fccd277d2d1e45c1b7955b32e3d Mon Sep 17 00:00:00 2001 From: Lucid Date: Fri, 28 Nov 2025 22:12:06 -0500 Subject: [PATCH] Added links deleted chart --- src/app/LinksDeletedChart.tsx | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/app/LinksDeletedChart.tsx diff --git a/src/app/LinksDeletedChart.tsx b/src/app/LinksDeletedChart.tsx new file mode 100644 index 0000000..b48f7c6 --- /dev/null +++ b/src/app/LinksDeletedChart.tsx @@ -0,0 +1,15 @@ +import { JSX } from "react"; +import LineChartComponent from "@/components/charts/LineChart"; +import { LineChartArr } from "@/types/LineChartStats"; + +interface LinksDeletedChartProps { + lineChartData: LineChartArr; +} + +const LinksDeletedChart = ({ + lineChartData +}: LinksDeletedChartProps): JSX.Element => { + return ; +}; + +export default LinksDeletedChart;