6 lines
164 B
JavaScript
6 lines
164 B
JavaScript
export const fromWiaasCountryList = (countryList) => {
|
|
return {
|
|
idCountry: countryList.country_id,
|
|
countryName: countryList.country_name
|
|
}
|
|
} |