I currently follow this tutorial here which uses:
import { AUTH_TOKEN } from '../constants'
While I followed the tutorial step-by-step I have to use
import AUTH_TOKEN from '../constants'
My constants.js looks like this:
export const AUTH_TOKEN = "auth-token";
I struggle to understand why my React.js app behaves the opposite.