export interface AirportItem {
  id: number;
  name: string;
  iata: string;
  locationName: string;
}
