import { useAuthStore } from '../store/authStore'; export default function ChatPage() { const user = useAuthStore((state) => state.user); const logout = useAuthStore((state) => state.logout); const handleLogout = async () => { // TODO: Call logout API logout(); window.location.href = '/auth'; }; return (
{/* Sidebar */}

Aether

Привет, {user?.username}!

Чаты скоро появятся...
{/* Main Chat Area */}
Выберите чат или начните новый
); }