import React from "react"; import { Link, useNavigate, useLocation } from "react-router-dom"; function Sidebar() { const navigate = useNavigate(); const location = useLocation(); const handleLogout = () => { localStorage.removeItem("user"); localStorage.removeItem("predictionResult"); navigate("/login"); }; const isActive = (path) => location.pathname === path; return (

AI Doctor

🏠 Dashboard 🩺 Prediction 📋 Result 🕘 History 📅 Appointments 👨‍⚕️ Doctors 📊 Reports
); } export default Sidebar;