Theme updated

This commit is contained in:
Bahadır Sofuoğlu
2022-11-06 15:02:12 +03:00
parent 357fd44630
commit 0e5c4072e1
101 changed files with 217635 additions and 54 deletions

View File

@@ -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);
}
}