Files
thrilltrack-explorer/src-old/components/companies/OperatorPhotoGallery.tsx

24 lines
513 B
TypeScript

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 (
<EntityPhotoGallery
entityId={operatorId}
entityType="operator"
entityName={operatorName}
/>
);
}