import { Button, Dialog, DialogTrigger, DialogContent, ScrollArea, } from "@renderer/components/ui"; import { SettingsIcon, HomeIcon, HeadphonesIcon, VideoIcon, NewspaperIcon, BookMarkedIcon, UserIcon, BotIcon, UsersRoundIcon, } from "lucide-react"; import { useLocation, Link } from "react-router-dom"; import { t } from "i18next"; import { Preferences } from "@renderer/components"; import { Tooltip } from "react-tooltip"; export const Sidebar = () => { const location = useLocation(); const activeTab = location.pathname; return (
ENJOY

{t("sidebar.library")}

{/* */} {/* */} {/* */} {/* */}

{t("sidebar.mine")}

); };