matrix-dimension/web/app/configs/widget/custom/custom.widget.component.ts
2017-12-23 13:32:07 -07:00

13 lines
No EOL
428 B
TypeScript

import { WidgetComponent } 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 WidgetComponent {
constructor() {
super(WIDGET_CUSTOM, "Custom Widget", "generic");
}
}