export interface CountryItem {
  id: number;
  iso2: string;
  name: string;
}
