Files
thrilltrack-explorer/src/components/companies/ManufacturerPhotoGallery.tsx
2025-09-29 19:41:28 +00:00

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}
/>
);
}