// Sidebar.js import React from "react"; import { Link } from "react-router-dom"; import { Layout, Menu } from "antd"; import { DashboardOutlined, PrinterOutlined, PlayCircleOutlined, FileOutlined, } from "@ant-design/icons"; import FillamentIcon from "../../Icons/FillamentIcon" import GCodeFileIcon from "../../Icons/GCodeFileIcon"; const { Sider } = Layout; const Sidebar = () => { const items = [ { key: "overview", label: Overview, icon: , }, { key: "printers", label: Printers, icon: , }, { key: "jobs", label: Print Jobs, icon: , }, { key: "fillaments", label: Fillaments, icon: , }, { key: "gcodefiles", label: G Code Files, icon: , }, ]; return ( ); }; export default Sidebar;