mirror of
https://github.com/turt2live/matrix-dimension.git
synced 2024-10-01 01:05:53 -04:00
13 lines
457 B
TypeScript
13 lines
457 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 Docs Widget", "generic", "googleDocs");
|
|
}
|
|
} |