Instantly share code, notes, and snippets.

Embed
What would you like to do?
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