matrix-dimension/web/app/configs/widget/custom/custom.widget.component.ts

15 lines
530 B
TypeScript
Raw Normal View History

2017-12-23 15:32:07 -05:00
import { WidgetComponent } from "../widget.component";
2017-12-22 23:33:37 -05:00
import { WIDGET_CUSTOM } from "../../../shared/models/widget";
import { Component } from "@angular/core";
import { TranslateService } from "@ngx-translate/core";
2017-12-22 23:33:37 -05:00
@Component({
templateUrl: "custom.widget.component.html",
styleUrls: ["custom.widget.component.scss"],
})
2017-12-23 15:32:07 -05:00
export class CustomWidgetConfigComponent extends WidgetComponent {
constructor(public translate: TranslateService) {
super(WIDGET_CUSTOM, "Custom Widget", "generic", translate);
2017-12-22 23:33:37 -05:00
}
}