import React from 'react'; import { COUNTRY_CODES, CountryCode } from 'soapbox/utils/phone'; interface ICountryCodeDropdown { countryCode: CountryCode onChange(countryCode: CountryCode): void } /** Dropdown menu to select a country code. */ const CountryCodeDropdown: React.FC = ({ countryCode, onChange }) => { return ( ); }; export default CountryCodeDropdown;