ChandimaPrabath's picture
update
0527ba9
raw
history blame
No virus
301 Bytes
'use client';
import { useParams } from 'next/navigation';
export default function FilmPlayer() {
const { title } = useParams();
return (
<>
<div>
<h1 className='text-white'>Film Player - {title}</h1>
{/* Add film player component here */}
</div>
</>
);
}