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: 'wikis', label: 'Wikis', icon: '📚', path: `/boards/${boardId}/wikis` }, { id: 'history', label: 'History', icon: '📜', path: `/boards/${boardId}/history` }, ]; return (