7 lines
147 B
JavaScript
7 lines
147 B
JavaScript
export const fetchData = () => {
|
|
return fetch('./php/get.php')
|
|
.then(response => {
|
|
return response.json();
|
|
})
|
|
};
|