summaryrefslogtreecommitdiffstats
path: root/components/datalake-handler/admin/src/app/topics/topics.component.ts
diff options
context:
space:
mode:
Diffstat (limited to 'components/datalake-handler/admin/src/app/topics/topics.component.ts')
-rw-r--r--components/datalake-handler/admin/src/app/topics/topics.component.ts16
1 files changed, 0 insertions, 16 deletions
diff --git a/components/datalake-handler/admin/src/app/topics/topics.component.ts b/components/datalake-handler/admin/src/app/topics/topics.component.ts
deleted file mode 100644
index ef171437..00000000
--- a/components/datalake-handler/admin/src/app/topics/topics.component.ts
+++ /dev/null
@@ -1,16 +0,0 @@
-import { Component, OnInit } from "@angular/core";
-import { HeaderService } from "../core/services/header.service";
-
-@Component({
- selector: "app-topics",
- templateUrl: "./topics.component.html",
- styleUrls: ["./topics.component.css"]
-})
-export class TopicsComponent implements OnInit {
- constructor(private headerService: HeaderService) {}
-
- ngOnInit() {
- // Set page title
- this.headerService.setTitle("SIDEBAR.TOPICS");
- }
-}