react-select-country-list
react-select-country-list copied to clipboard
This is the country list data format for react-select
``` {name: 'Autonomous City Of Buenos Aires', isoCode: 'C', ...} {name: 'Buenos Aires Province', isoCode: 'B', ... } ``` Belgrano is part of City of Buenos Aires (C) ``` countryCode:...
When I set an initial empty value like so: ```javascript const countries = useMemo(() => { return countryList().setEmpty("Select a Country").getData(); }, []); ``` I end up with a duplicate empty...
Firstly, great work! Would adding an additional property _region_ (e.g Europe, North-America) to pre-filter countries in the drop down, be an option? Use cases don't always require every country in...