import { Image } from "expo-image"; import { View } from "react-native"; type PosterProps = { id?: string | null; url?: string | null; showProgress?: boolean; blurhash?: string | null; }; const Poster: React.FC = ({ id, url, blurhash }) => { if (!id && !url) return ( ); return ( ); }; export default Poster;