15 lines
469 B
TypeScript
15 lines
469 B
TypeScript
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 (
|
|
<div className="flex flex-1 min-h-0 w-full">
|
|
<ChatSection />
|
|
<MenuSection />
|
|
</div>
|
|
)
|
|
}
|