mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-22 15:51:12 -05:00
24 lines
513 B
TypeScript
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}
|
|
/>
|
|
);
|
|
}
|