import { Box, Tab, Tabs } from "@mui/material" import { useState } from "react" import ServersView from "../components/ServersView" import ServerIpsView from "../components/ServerIpsView" import ServerHardware from "../components/ServerHardware" import ServerStorage from "../components/ServerStorages" import { BarChart } from '@mui/x-charts/BarChart'; export default function Servers() { const [currentTab, setCurrentTab] = useState(0) const handleTabChange = (newValue: number) => { setCurrentTab(newValue); } interface TabPanelProps { children?: React.ReactNode; index: number; value: number; } function CustomTabPanel(props: TabPanelProps) { const { children, value, index, ...other } = props; return (