It seems to be obvious, but I found myself a bit confused about when to use curly braces for importing a single module in ES6. For example, in the React-Native project I am
The curly braces are used only for import when export is named. If the export is default then curly braces are not used for import.