import React from 'react' import { cn } from '../lib/utils' interface ImageGalleryProps { images: { uri?: string }[] className?: string } export function ImageGallery({ images, className }: ImageGalleryProps) { return (
{images.map((image, index) => (
{`Gallery
))}
) }