Hey guys,
I finished my Leaderboard project. I would appreciate any feedback or constructive criticism. Thanks!
Hey guys,
I finished my Leaderboard project. I would appreciate any feedback or constructive criticism. Thanks!
A couple of feedbacks that pops in my mind:
You should get in the habit of handling failures/error gracefully, to better enhance the UX.
Just to start you can simply catch any error in the promise and then decide what to to:
axios.[...]
.then[...]
.catch( error =>
// do something with the error
);
componentDidMount, allTimeHandler and recentHandler are all three virtually the same function but with just one or two different params… I’m sure you’d be able to refactor those in just one function 
Nonetheless good job 
Hope it helps.