I have my function handleRes who is exec in await.
But i want exec a function when the await is ended. Like with .then or .catch
How can i do something like this
I import this function
 const handleRes = res => {
    res
      .then(({ data }) => {
        console.log('done');
      })
      .catch((error) => {
        console.log('error');
      });
  };
Read it in this file and exec something when it end
await handleRes(res).then(() => setLoading(false));
 
    