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.

81 lines
1.3 KiB

2 months ago
export interface Country {
code: string;
name: string;
flag: string;
userCount: number;
}
export const countries: Country[] = [
{
code: 'CD',
name: 'Democratic Republic of the Congo',
flag: '🇨🇩',
userCount: 1000000
},
{
code: 'TG',
name: 'Togo',
flag: '🇹🇬',
userCount: 900000
},
{
code: 'ML',
name: 'Mali',
flag: '🇲🇱',
userCount: 800000
},
{
code: 'BF',
name: 'Burkina Faso',
flag: '🇧🇫',
userCount: 700000
},
{
code: 'GN',
name: 'Guinea',
flag: '🇬🇳',
userCount: 600000
},
{
code: 'GA',
name: 'Gabon',
flag: '🇬🇦',
userCount: 500000
},
{
code: 'SN',
name: 'Senegal',
flag: '🇸🇳',
userCount: 400000
},
{
code: 'CG',
name: 'Republic of Congo',
flag: '🇨🇬',
userCount: 300000
},
{
code: 'BJ',
name: 'Benin',
flag: '🇧🇯',
userCount: 200000
},
{
code: 'CM',
name: 'Cameroon',
flag: '🇨🇲',
userCount: 150000
},
{
code: 'CI',
name: 'Ivory Coast',
flag: '🇨🇮',
userCount: 100000
},
{
code: 'FR',
name: 'France',
flag: '🇫🇷',
userCount: 50000
}
].sort((a, b) => b.userCount - a.userCount);