import React from 'react'; interface FlightPathProps { stops?: number; } const FlightPath: React.FC = ({ stops = 0 }) => { return (
{Array.from({ length: stops }, (_, index) => (
))}
); }; export default FlightPath;