To export multiple features from a single module, use export { feature1, feature2 as _______ };.

  • alias
  • as
  • export
  • feature2
To export multiple features from a single module, use export { feature1, feature2 as alias }; where as alias provides an optional alias for the exported feature, making it clear when imported.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *