import React from "react"; import { Dimensions, View } from "react-native"; const { width: SCREEN_WIDTH } = Dimensions.get("window"); export const ItemContentSkeletonTV: React.FC = () => { return ( {/* Left side - Poster placeholder */} {/* Right side - Content placeholders */} {/* Logo/Title placeholder */} {/* Metadata badges row */} {/* Genres placeholder */} {/* Overview placeholder */} {/* Play button placeholder */} ); };