--- export interface Props { image: string; fileType: string; } const { image, fileType } = Astro.props; --- {(image!= null) && ( (fileType == 'image') ? ( {image}
) : ( (fileType == 'image') && ( )) )}