import { EntityPhotoGallery } from '@/components/upload/EntityPhotoGallery'; interface PropertyOwnerPhotoGalleryProps { propertyOwnerId: string; propertyOwnerName: string; } /** * Wrapper for property owner photo galleries * Uses the generic EntityPhotoGallery component internally */ export function PropertyOwnerPhotoGallery({ propertyOwnerId, propertyOwnerName }: PropertyOwnerPhotoGalleryProps) { return ( ); }