diff --git a/src/app/CommandResponsesChart.tsx b/src/app/CommandResponsesChart.tsx new file mode 100644 index 0000000..8e70d12 --- /dev/null +++ b/src/app/CommandResponsesChart.tsx @@ -0,0 +1,24 @@ +import { JSX } from "react"; +import { Heading, VStack } from "@chakra-ui/react"; +import LineChartComponent from "@/components/charts/LineChart"; +import { LineChartArr } from "@/types/LineChartStats"; + +interface CommandResponsesChartProps { + lineChartData: LineChartArr; +} + +const CommandResponsesChart = ({ + lineChartData +}: CommandResponsesChartProps): JSX.Element => { + return ( + + {`Commands Responded To (Past 30 Days)`} + + + ); +}; + +export default CommandResponsesChart; diff --git a/src/app/LinksDeletedChart.tsx b/src/app/LinksDeletedChart.tsx index b48f7c6..3fbd5a6 100644 --- a/src/app/LinksDeletedChart.tsx +++ b/src/app/LinksDeletedChart.tsx @@ -1,4 +1,5 @@ import { JSX } from "react"; +import { Heading, VStack } from "@chakra-ui/react"; import LineChartComponent from "@/components/charts/LineChart"; import { LineChartArr } from "@/types/LineChartStats"; @@ -9,7 +10,12 @@ interface LinksDeletedChartProps { const LinksDeletedChart = ({ lineChartData }: LinksDeletedChartProps): JSX.Element => { - return ; + return ( + + {`Links Deleted (Past 30 Days)`} + + + ); }; export default LinksDeletedChart; diff --git a/src/app/TimesTriggeredChart.tsx b/src/app/TimesTriggeredChart.tsx new file mode 100644 index 0000000..659e605 --- /dev/null +++ b/src/app/TimesTriggeredChart.tsx @@ -0,0 +1,24 @@ +import { JSX } from "react"; +import LineChartComponent from "@/components/charts/LineChart"; +import { LineChartArr } from "@/types/LineChartStats"; +import { Heading, VStack } from "@chakra-ui/react"; + +interface TimedTriggeredChartProps { + lineChartData: LineChartArr; +} + +const TimedTriggeredChart = ({ + lineChartData +}: TimedTriggeredChartProps): JSX.Element => { + return ( + + {`Times Bot Was Triggered (Past 30 Days)`} + + + ); +}; + +export default TimedTriggeredChart;