Default vs Named Exports

Default Vs Named
πŸ‘¨β€πŸ’Ό Perfect! You've used both named and default exports. Notice how you can import both in a single statement.
πŸ¦‰ Use named exports when:
  • Exporting multiple things from a module
  • You want explicit names at the import site
  • Better for tree-shaking
Use default exports when:
  • Exporting a single primary thing (like a class or main function)
  • The module has one clear purpose
  • Common in React components

Please set the playground first

Loading "Default vs Named Exports"
Loading "Default vs Named Exports"