'use client'; import type { BroadcastInfo } from '@/types/broadcast'; import LiveNavbar from './LiveNavbar'; import LiveVideoSection from './LiveVideoSection'; import ChatWindow from '@/components/ChatWindow'; import styles from './styles/LiveLayout.module.scss'; interface LiveLayoutProps { broadcast: BroadcastInfo; } export default function LiveLayout({ broadcast }: LiveLayoutProps) { return (
{/* 메인 콘텐츠 영역 */}
{/* 영상 영역 */} {/* 채팅 영역 */}
); }