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

24 lines
557 B
TypeScript

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 (
<EntityPhotoGallery
entityId={manufacturerId}
entityType="manufacturer"
entityName={manufacturerName}
/>
);
}