UNPKG

gallery-tour

Version:

A modern, responsive, Airbnb-style gallery component for React.

12 lines (11 loc) 291 B
import React from 'react'; interface GallerySectionsViewProps { images: { url: string; label?: string; section?: string; }[]; onImageClick?: (idx: number) => void; } export declare const GallerySectionsView: React.FC<GallerySectionsViewProps>; export {};