import { Image } from "expo-image"; import { View } from "react-native"; export const LargePoster: React.FC<{ url?: string | null }> = ({ url }) => { if (!url) return ( ); return ( ); };