Files
D1041231071_UAS-Tugas_WebGI…/03/frontend/js/services/statistik.service.js
T

11 lines
237 B
JavaScript

export const CONFIG = {
BASE_URL: '/03/backend/api'
};
export const statistikService = {
getKepadatan: async () => {
const res = await fetch(`${CONFIG.BASE_URL}/statistik.php`);
return await res.json();
}
};