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