Commit c61e2515 authored by Webb, Jake's avatar Webb, Jake
Browse files

removed unused imports

parent b849fc50
Loading
Loading
Loading
Loading
+0 −22
Original line number Diff line number Diff line
import { GraphHeader } from "../../shared/plots/graphHeader";
import { CoolingCDU } from "../../../models/CoolingCDU.model";
import { Gauge } from "../../shared/plots/gauge";
import {
  PieChart,
  Pie,
  ResponsiveContainer,
  Tooltip,
  Cell,
  LabelList,
} from "recharts";
import colors from "tailwindcss/colors";
import { SimulationStatistic } from "../../../models/SimulationStatistic.model";

function GaugeWrapper(props: { children: React.ReactNode }) {
@@ -20,19 +11,6 @@ function GaugeWrapper(props: { children: React.ReactNode }) {
  );
}

const tempData = [
  { value: 12.5, name: "CPU" },
  { value: 50, name: "GPU" },
  { value: 37.5, name: "Cooling" },
];

const pieChartFills = [
  colors.orange[500],
  colors.blue[500],
  "#5BE12C",
  colors.purple[500],
];

export function SimulationGauges({
  metrics,
  statistics,