UNPKG

@qite/tide-booking-component

Version:

React Booking wizard & Booking product component for Tide

14 lines (13 loc) 289 B
import React from 'react'; export interface GalleryImage { src: string; alt?: string; caption?: string; } export interface GalleryProps { title?: string; intro?: string; images: GalleryImage[]; } declare const PhotoGallery: React.FC<GalleryProps>; export default PhotoGallery;