page.tsx 467 B

123456789101112131415
  1. 'use client';
  2. import '@/app/(main)/chat/style.scss';
  3. import MainChat from '@/app/(main)/chat/MainChat';
  4. // 채팅 새창(팝업) — (main) 그룹 밖이라 ChatDock 이 마운트되지 않아 'main' 룸 이중 참가 충돌이 없다.
  5. // 별개 브라우저 컨텍스트 = 별개 SignalR 연결이므로 도크와 독립적으로 동작한다.
  6. export default function ChatPopupPage()
  7. {
  8. return (
  9. <div className='chat-popup'>
  10. <MainChat popup />
  11. </div>
  12. );
  13. }