When fetching data in React, it’s tempting to jump straight into rendering. But if you try to access user before it’s loaded, things break fast.
In this example:
const { user_url, name } = user;
If user is still null (which it is initially), this li...