import { TrashCard, type TrashCardImage } from "./TrashCard"; export function TrashGrid({ images }: { images: TrashCardImage[] }) { if (images.length === 0) return null; return (
{images.map((img) => (
))}
); }