Latest solutions
Latest comments
- @johnrookie-coder@uttamsharma446
Hey JOHNROOKIE, Great work :) but while fetching data you can show loading content for eg.
let loading=false;
const fetchData =()=>{ loading=true fetch(api).then(response=>response()).then(result=>{ loading=false; //store data
}).catch(err=>{})
}
if(loading){ //show loading
} else{ show data content }
Note: this fetch data method you can use on click as well on initial load of the page
- @nikeshnaik@uttamsharma446
You've done very well please put every file and folder in an understandable way so anyone easily understands. check the tutorial related this on youtube
- @anoshaahmed@uttamsharma446
Nice work, Congratulations!!