matrix-dimension/web/app/configs/widget/google_docs/gdoc.widget.component.ts
2017-12-23 15:03:24 -07:00

13 lines
No EOL
449 B
TypeScript

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 Doc", "generic", "googleDocs");
}
}