mirror of
https://github.com/turt2live/matrix-dimension.git
synced 2024-10-01 01:05:53 -04:00
13 lines
434 B
TypeScript
13 lines
434 B
TypeScript
|
import { NewWidgetComponent } from "../widget.component";
|
||
|
import { WIDGET_CUSTOM } from "../../../shared/models/widget";
|
||
|
import { Component } from "@angular/core";
|
||
|
|
||
|
@Component({
|
||
|
templateUrl: "custom.widget.component.html",
|
||
|
styleUrls: ["custom.widget.component.scss"],
|
||
|
})
|
||
|
export class CustomWidgetConfigComponent extends NewWidgetComponent {
|
||
|
constructor() {
|
||
|
super(WIDGET_CUSTOM, "Custom Widget", "generic");
|
||
|
}
|
||
|
}
|