Added links deleted chart
This commit is contained in:
15
src/app/LinksDeletedChart.tsx
Normal file
15
src/app/LinksDeletedChart.tsx
Normal 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;
|
||||
Reference in New Issue
Block a user