You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
242 B

import A from './A';
import B from './B';
import C from './C';
import D from './D';
export const a = new A();
export const b1 = a.b();
export const b2 = new B();
export const c1 = new C();
export const d = new D();
export const c2 = d.c();