import { useChat } from "../../hooks/useChat"; export function ChatTabs() { const { activeTab, setActiveTab, setCurrentChat } = useChat(); const handleChatClick = (chatName: string) => { setCurrentChat(chatName); }; return (
setActiveTab(e.detail.value)}> Чаты Каналы Контакты ЛС handleChatClick("Общий чат")} style={{ cursor: "pointer" }} > handleChatClick("Общий чат 2")} style={{ cursor: "pointer" }} > Скоро будет... Скоро будет...
); }