holywisdompublicschool.com/src/pages/test2.astro

15 lines
372 B
Plaintext

<div>
<button onclick="fetchData()">Fetch Data</button>
</div>
<script is:inline>
function fetchData(){
fetch(`https://dummy.restapiexample.com/api/v1/employees`)
.then(response => response.json())
.then(data => {
console.log(data)
})
.catch(error => {
console.error(error)
})
}
</script>