INF.03-01-21.06-SG/src/js/get.js
2025-02-19 14:20:28 +01:00

7 lines
147 B
JavaScript

export const fetchData = () => {
return fetch('./php/get.php')
.then(response => {
return response.json();
})
};