import { EntityPhotoGallery } from '@/components/upload/EntityPhotoGallery'; interface OperatorPhotoGalleryProps { operatorId: string; operatorName: string; } /** * Wrapper for operator photo galleries * Uses the generic EntityPhotoGallery component internally */ export function OperatorPhotoGallery({ operatorId, operatorName }: OperatorPhotoGalleryProps) { return ( ); }