8 lines
185 B
JavaScript
Executable File
8 lines
185 B
JavaScript
Executable File
export default class CountryService {
|
|
getCountries() {
|
|
return fetch('/data/countries.json')
|
|
.then((res) => res.json())
|
|
.then((d) => d.data);
|
|
}
|
|
}
|