aboutsummaryrefslogtreecommitdiff
path: root/benchmark/frontend/src/components/data/dashboard/RadarChart.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/frontend/src/components/data/dashboard/RadarChart.tsx')
-rw-r--r--benchmark/frontend/src/components/data/dashboard/RadarChart.tsx16
1 files changed, 16 insertions, 0 deletions
diff --git a/benchmark/frontend/src/components/data/dashboard/RadarChart.tsx b/benchmark/frontend/src/components/data/dashboard/RadarChart.tsx
new file mode 100644
index 000000000..f70a7e133
--- /dev/null
+++ b/benchmark/frontend/src/components/data/dashboard/RadarChart.tsx
@@ -0,0 +1,16 @@
+import React, { useState } from "react";
+import tw from "tailwind-styled-components";
+
+interface RadarChartProps {
+ data: any;
+}
+
+const RadarChart: React.FC<RadarChartProps> = ({ data }) => {
+ return <RadarChartContainer></RadarChartContainer>;
+};
+
+export default RadarChart;
+
+const RadarChartContainer = tw.div`
+
+`;