Skip to content

Instantly share code, notes, and snippets.

@dherman
Created February 5, 2016 19:30
Show Gist options
  • Save dherman/721762f0cd0be72c3166 to your computer and use it in GitHub Desktop.
Save dherman/721762f0cd0be72c3166 to your computer and use it in GitHub Desktop.
export default class A { ... }
import B from "B";
A.B_INSTANCE = new B();
export default class B { ... }
import A from "A";
B.A_INSTANCE = new A();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment