Files
old-new-wiaas/frontend/src/helpers/CountryHelper.js

6 lines
164 B
JavaScript
Raw Normal View History

export const fromWiaasCountryList = (countryList) => {
return {
idCountry: countryList.country_id,
countryName: countryList.country_name
}
}