UNPKG

@qite/tide-booking-component

Version:

React Booking wizard & Booking product component for Tide

9 lines (8 loc) 222 B
import React from 'react'; interface ProductCardProps { productName: string; thumbnailUrl?: string; handleToggleClick: () => void; } declare const ProductCard: React.FC<ProductCardProps>; export default ProductCard;