mirror of
https://github.com/turt2live/matrix-dimension.git
synced 2024-10-01 01:05:53 -04:00
9dc4e99aca
- the traslation feature without the changes from other branches
15 lines
530 B
TypeScript
15 lines
530 B
TypeScript
import { WidgetComponent } from "../widget.component";
|
|
import { WIDGET_CUSTOM } from "../../../shared/models/widget";
|
|
import { Component } from "@angular/core";
|
|
import { TranslateService } from "@ngx-translate/core";
|
|
|
|
@Component({
|
|
templateUrl: "custom.widget.component.html",
|
|
styleUrls: ["custom.widget.component.scss"],
|
|
})
|
|
export class CustomWidgetConfigComponent extends WidgetComponent {
|
|
constructor(public translate: TranslateService) {
|
|
super(WIDGET_CUSTOM, "Custom Widget", "generic", translate);
|
|
}
|
|
}
|