'use client'; import { useState } from 'react'; import type { BroadcastInfo } from '@/types/broadcast'; import styles from './LivePlayer.module.scss'; interface LivePlayerProps { broadcast: BroadcastInfo; } export default function LivePlayer({ broadcast }: LivePlayerProps) { const [isPlaying, setIsPlaying] = useState(true); return (
{/* 비디오 플레이어 영역 */}
{/* 플레이어 배경 */}
{/* 중앙 비디오 아이콘 */}
{/* 플레이어 오버레이 컨트롤 */}
{/* 재생/일시정지 버튼 (중앙) */} {/* 하단 컨트롤 바 */}
{/* 진행 바 */}
{/* 컨트롤 버튼들 */}
LIVE
); }