16 lines
226 B
TypeScript
16 lines
226 B
TypeScript
|
|
export default abstract class Component {
|
|
|
|
$area: JQuery<HTMLElement>
|
|
|
|
constructor() {
|
|
this.$area = $("<div>");
|
|
}
|
|
|
|
mountInto($parent: JQuery<HTMLElement>): void {
|
|
$parent.html('');
|
|
$parent.append(this.$area);
|
|
}
|
|
|
|
}
|