Last active
October 26, 2017 07:46
-
-
Save andycarrell/2fbfa90e1570939ee99b764aa9ceb5f8 to your computer and use it in GitHub Desktop.
Circular imports
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import ... | |
import { SmolComponent } from './SmolComponent'; | |
export class BigOleComponent { } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import ... | |
import * as example from './BigOleComponent'; | |
console.log(example); // { BigOleComponent: undefined } | |
export class SmolComponent { } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment