'use client'; import PageLayout from '@/components/PageLayout'; import TVShowContent from './TVShowContent'; import type { TVShow } from '@/types/movie'; interface TVShowPageProps { showId: string; show: TVShow | null; } export default function TVShowPage({ showId, show }: TVShowPageProps) { if (!show) { return (
Сериал не найден
); } return (
); }