You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
94 lines
1.6 KiB
94 lines
1.6 KiB
export interface Country { |
|
code: string; |
|
name: string; |
|
flag: string; |
|
userCount: number; |
|
phoneCode: string; |
|
} |
|
|
|
export const countries: Country[] = [ |
|
{ |
|
code: 'CD', |
|
name: 'Democratic Republic of the Congo', |
|
flag: '🇨🇩', |
|
userCount: 1000000, |
|
phoneCode: '+243' |
|
}, |
|
{ |
|
code: 'TG', |
|
name: 'Togo', |
|
flag: '🇹🇬', |
|
userCount: 900000, |
|
phoneCode: '+228' |
|
}, |
|
{ |
|
code: 'ML', |
|
name: 'Mali', |
|
flag: '🇲🇱', |
|
userCount: 800000, |
|
phoneCode: '+223' |
|
}, |
|
{ |
|
code: 'BF', |
|
name: 'Burkina Faso', |
|
flag: '🇧🇫', |
|
userCount: 700000, |
|
phoneCode: '+226' |
|
}, |
|
{ |
|
code: 'GN', |
|
name: 'Guinea', |
|
flag: '🇬🇳', |
|
userCount: 600000, |
|
phoneCode: '+224' |
|
}, |
|
{ |
|
code: 'GA', |
|
name: 'Gabon', |
|
flag: '🇬🇦', |
|
userCount: 500000, |
|
phoneCode: '+241' |
|
}, |
|
{ |
|
code: 'SN', |
|
name: 'Senegal', |
|
flag: '🇸🇳', |
|
userCount: 400000, |
|
phoneCode: '+221' |
|
}, |
|
{ |
|
code: 'CG', |
|
name: 'Republic of Congo', |
|
flag: '🇨🇬', |
|
userCount: 300000, |
|
phoneCode: '+242' |
|
}, |
|
{ |
|
code: 'BJ', |
|
name: 'Benin', |
|
flag: '🇧🇯', |
|
userCount: 200000, |
|
phoneCode: '+229' |
|
}, |
|
{ |
|
code: 'CM', |
|
name: 'Cameroon', |
|
flag: '🇨🇲', |
|
userCount: 150000, |
|
phoneCode: '+237' |
|
}, |
|
{ |
|
code: 'CI', |
|
name: 'Ivory Coast', |
|
flag: '🇨🇮', |
|
userCount: 100000, |
|
phoneCode: '+225' |
|
}, |
|
{ |
|
code: 'FR', |
|
name: 'France', |
|
flag: '🇫🇷', |
|
userCount: 50000, |
|
phoneCode: '+33' |
|
} |
|
].sort((a, b) => b.userCount - a.userCount);
|