INF.03-01-21.06-SG/src/js/get.js

7 lines
147 B
JavaScript
Raw Normal View History

2025-02-13 13:00:46 +00:00
export const fetchData = () => {
2025-02-14 14:01:41 +00:00
return fetch('./php/get.php')
2025-02-13 13:00:46 +00:00
.then(response => {
2025-02-14 12:45:35 +00:00
return response.json();
2025-02-13 13:00:46 +00:00
})
};