Async calls in javascript can help us in API calls and fetching data from server, but why is it we can't use async calls with useEffect like shown below: useEffect( async () => { // api call or data fetch }, []) // It gives an ERROR... We can not ...