import { useChatInit } from '@/features/chat/hooks/useChatInit' import { ChatSection } from '@/features/chat/components/ChatSection' import { MenuSection } from '@/features/chat/components/menu/MenuSection' // 콘텐츠 영역: 채팅 + 우측 메뉴. mock 데이터를 스토어에 적재한다. export function ChatContainer() { useChatInit() return (
) }