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);