6 lines
150 B
JavaScript
6 lines
150 B
JavaScript
export const fromWiaasCountryList = (countryList) => {
|
|
return {
|
|
idCountry: countryList.code,
|
|
countryName: countryList.name
|
|
}
|
|
} |