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;