nodeguy/src/lib/core/Component/index.ts
2019-05-21 20:55:49 +02:00

6 lines
238 B
TypeScript

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