Default Module
In this lesson, you will look at what a default module is.
We'll cover the following...
Module with default export
Another concept around modules is that each module can have a default export. This concept is unique for each module. The syntax is the keyword default
between export
and the actual element to expose. ...