import { EntityPhotoGallery } from '@/components/upload/EntityPhotoGallery'; interface ManufacturerPhotoGalleryProps { manufacturerId: string; manufacturerName: string; } /** * Wrapper for manufacturer photo galleries * Uses the generic EntityPhotoGallery component internally */ export function ManufacturerPhotoGallery({ manufacturerId, manufacturerName }: ManufacturerPhotoGalleryProps) { return ( ); }