We had a discussion in TC39 this week about how to think about the JS module system's default export feature. It turns out one of the ways people explain this feature is as a shorthand for an export with the name default. For example: import LoadingSpinner from 'loading-spinner'; is equivalent to: import { default as LoadingSpinner } from 'loading-spinner'; This is technically accurate information