'use client'; import styled from 'styled-components'; import PageLayout from '@/components/PageLayout'; import TVShowContent from './TVShowContent'; import type { TVShow } from '@/types/movie'; const Container = styled.div` width: 100%; min-height: 100vh; padding: 0 24px; `; interface TVShowPageProps { tvShowId: string; show: TVShow | null; } export default function TVShowPage({ tvShowId, show }: TVShowPageProps) { if (!show) { return ( Сериал не найден К сожалению, запрашиваемый сериал не существует или был удален. ); } return ( ); }
К сожалению, запрашиваемый сериал не существует или был удален.