import { Link, useLocation } from 'react-router-dom'; interface BoardSidebarProps { boardId: string; } export function BoardSidebar({ boardId }: BoardSidebarProps) { const location = useLocation(); const menuItems = [ { id: 'epics', label: 'Epics', icon: '📋', path: `/boards/${boardId}/epics` }, { id: 'history', label: 'History', icon: '📜', path: `/boards/${boardId}/history` }, { id: 'documents', label: 'Documents', icon: '📄', path: `/boards/${boardId}/documents` }, ]; return (