UNPKG

@qite/tide-booking-component

Version:

React Booking wizard & Booking product component for Tide

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