JSFiddle - React, Tailwind, and code Playground
by WoJWoJ
JavaScript
const initialCheck = () => {
return fetch('https://reqres.in/api/users?page=2')
.then(r => {
// do things
return r
}
}
const actualStuff = () => {
console.log('hello')
}
initialCheck()
.then(r => {
actualStuff()
})