/** * @file components/chat/ChatHeader.tsx * @description Client component rendering the top header of the chat interface with sidebar toggles and current channel details. */ "use client"; import { Menu, Hash, Users } from "lucide-react"; import { useSidebarStore } from "@/lib/stores/useSidebarStore"; /** * Renders the top navigation header for the chat view, providing toggle triggers for mobile navigation and member list sidebars. * * @returns {JSX.Element} The rendered chat header component. */ export function ChatHeader() { const { toggleNav, toggleMembers } = useSidebarStore(); return (
general
); }