File size: 301 Bytes
0527ba9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
'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>
    </>
  );
}