Reference Guide
What is a Named Export?
It is a way to export members of a module individually. Unlike `export default`, named exports keep their original name when imported.
Golden Rules
- You can have multiple per file.
- Importing requires the use of curly braces
{ }. - They allow using the alias
asto rename.