aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/_elements/notifications/notifications.component.ts
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/app/_elements/notifications/notifications.component.ts')
-rw-r--r--frontend/src/app/_elements/notifications/notifications.component.ts17
1 files changed, 17 insertions, 0 deletions
diff --git a/frontend/src/app/_elements/notifications/notifications.component.ts b/frontend/src/app/_elements/notifications/notifications.component.ts
new file mode 100644
index 00000000..7566828d
--- /dev/null
+++ b/frontend/src/app/_elements/notifications/notifications.component.ts
@@ -0,0 +1,17 @@
+import { Component, OnInit } from '@angular/core';
+import { WebSocketService } from 'src/app/_services/web-socket.service';
+
+@Component({
+ selector: 'app-notifications',
+ templateUrl: './notifications.component.html',
+ styleUrls: ['./notifications.component.css']
+})
+export class NotificationsComponent implements OnInit {
+
+ constructor(private wsService: WebSocketService) { }
+
+ ngOnInit(): void {
+ // this.wsService.send('test');
+ }
+
+}