default
is basically const someVariableName
You don't need a named identifier because it's the default export for the file and you can name it whatever you want when you import it, so default
is just condensing the variable assignment into a single keyword.