import { useLocation, useNavigate } from 'react-router-dom'; import { NAV_ITEMS, normalizeWorkspacePath } from '../../router/routes'; const MENU_MARKS: Record = { '/home': '首', '/knowledge': '知', '/agents': '模', '/skills': '技', '/cron': '时', '/scripts': '脚', '/setting': '设', }; export default function Sidebar() { const location = useLocation(); const navigate = useNavigate(); const currentId = normalizeWorkspacePath(location.pathname); return ( ); }