export abstract class Component { protected children = new Set(); //TODO if react stub these as react will manage the instances from beings gc'ed better. protected parent: Component | null = null; abstract native: any; }