export interface ICountry {
    name: string;
    dialCode: string;
    isoCode: string;
    flag: string;
}
