Loading src/components/simulations/details/gauges.tsx +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 }) { Loading @@ -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, Loading Loading
src/components/simulations/details/gauges.tsx +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 }) { Loading @@ -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, Loading