ChandimaPrabath's picture
movie player 0.1
ded211a
raw
history blame
No virus
308 Bytes
import { Spinner } from "@/components/Spinner";
import './TvShows.css';
export default function TVShows() {
return (
<>
<div className="page-container">
<h1>TV Shows</h1>
<p className='text-white'>Browse our TV show collection.</p>
<Spinner/>
</div>
</>
);
}