Added links deleted chart

This commit is contained in:
2025-11-28 22:12:06 -05:00
parent 86a5ed382a
commit ec357bb9fa

View File

@@ -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 <LineChartComponent data={lineChartData} label="Triggers" />;
};
export default LinksDeletedChart;