import { ClipboardList, LayoutGrid, MessageCircle } from 'lucide-react'; import type { Appeal, TabId } from '../types'; import { NotificationsPanel } from './NotificationsPanel'; import { ProfilePanel } from './ProfilePanel'; import './Header.css'; interface HeaderProps { activeTab: TabId; onTabChange: (tab: TabId) => void; appeals: Appeal[]; } export function Header({ activeTab, onTabChange, appeals }: HeaderProps) { return (

ИТ-Ассистент

); }