mirror of
https://github.com/turt2live/matrix-dimension.git
synced 2024-10-01 01:05:53 -04:00
16 lines
484 B
TypeScript
16 lines
484 B
TypeScript
|
import { NewWidgetComponent } from "../widget.component";
|
||
|
import { Component, ContentChild, Input, TemplateRef } from "@angular/core";
|
||
|
|
||
|
@Component({
|
||
|
selector: "my-widget-config",
|
||
|
templateUrl: "config_screen.component.html",
|
||
|
styleUrls: ["config_screen.widget.component.scss"],
|
||
|
})
|
||
|
export class ConfigScreenWidgetComponent {
|
||
|
|
||
|
@Input() widgetComponent: NewWidgetComponent;
|
||
|
@ContentChild(TemplateRef) widgetParamsTemplate: TemplateRef<any>;
|
||
|
|
||
|
constructor() {
|
||
|
}
|
||
|
}
|