matrix-dimension/web/app/configs/widget/google_docs/gdoc.widget.component.ts

13 lines
457 B
TypeScript
Raw Normal View History

2017-12-23 20:44:19 +00:00
import { WidgetComponent } from "../widget.component";
import { WIDGET_GOOGLE_DOCS } from "../../../shared/models/widget";
import { Component } from "@angular/core";
@Component({
templateUrl: "gdoc.widget.component.html",
styleUrls: ["gdoc.widget.component.scss"],
})
export class GoogleDocsWidgetConfigComponent extends WidgetComponent {
constructor() {
super(WIDGET_GOOGLE_DOCS, "Google Docs Widget", "generic", "googleDocs");
}
}