I\'m using async/await throughout my codebase. Because of this my api calls are defined by async functions
async function apiFetchFoo { return await apiCall(..
await always work within a function that's declared as async. #thumbRule
await
async
async function fetchList () { let resp = await fetchApi([params]); }