Advertisement
Guest User

Untitled

a guest
Aug 20th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. // Module A
  2. export {
  3. A1 as default,
  4. A2,
  5. A3,
  6. };
  7.  
  8. // Module B
  9. export * from "moduleA";
  10.  
  11. // Module C
  12. import ModuleB from "moduleB";
  13.  
  14. // Module B
  15. export { default } from "moduleA";
  16. export * from "moduleA";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement