UNPKG

@qite/tide-booking-component

Version:

React Booking wizard & Booking product component for Tide

11 lines (10 loc) 306 B
import React from 'react'; import { GroupedFlights } from '../../types'; interface FlightOptionProps { item: GroupedFlights; isSelected: boolean; currentPrice: number; onChange: (item: GroupedFlights) => void; } declare const FlightOption: React.FC<FlightOptionProps>; export default FlightOption;