From c3a18ed5c21f45182abe7606814930e46bc73615 Mon Sep 17 00:00:00 2001 From: David Mang Date: Mon, 19 Aug 2024 20:45:33 +0200 Subject: [PATCH] Delete wordcloud component --- .../word-cloud/word-cloud.component.tsx | 29 ------------------- 1 file changed, 29 deletions(-) delete mode 100644 client/src/components/statistics/dashboard/word-cloud/word-cloud.component.tsx diff --git a/client/src/components/statistics/dashboard/word-cloud/word-cloud.component.tsx b/client/src/components/statistics/dashboard/word-cloud/word-cloud.component.tsx deleted file mode 100644 index 3fe8ec9..0000000 --- a/client/src/components/statistics/dashboard/word-cloud/word-cloud.component.tsx +++ /dev/null @@ -1,29 +0,0 @@ -import { Grid, Paper, Stack, Typography, useTheme } from "@mui/material"; -import { SingleBarGraphParams } from "../../../../types/statistics/statistics.types"; -import ReactWordcloud from "react-wordcloud"; -import { ResponsiveContainer } from "recharts"; - -function WordCloudGraph({ value, title }: SingleBarGraphParams) { - const theme = useTheme(); - console.log(value); - return ( - - - - - - {title} - - - - - - - - - - - ); -} - -export default WordCloudGraph;