Theme updated
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
export default class CountryService {
|
||||
|
||||
getCountries() {
|
||||
return fetch('data/countries.json').then(res => res.json()).then(d => d.data);
|
||||
getCountries () {
|
||||
return fetch('/data/countries.json')
|
||||
.then(res => res.json())
|
||||
.then(d => d.data);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user