In this lesson from the ES6 Challenges on freeCodeCamp, we look at importing our default export. (If you are unsure what I am talking about, check out the lesson before this one which explains it). Once we have exported out default export we can then import it similarly to how we learned in the past for regular imports. The main difference is that the import of our default export does not require curly braces since there is only one value in a default export. Our other imports may have multiple values and therefore would be surrounded with curly braces.