Files
DiunaBI/Frontend/src/app/components/notifications/notifications.component.ts

14 lines
380 B
TypeScript
Raw Normal View History

2023-01-08 16:57:21 +01:00
import { Component } from '@angular/core';
import { NotificationsService } from 'src/app/services/notifications.service';
@Component({
selector: 'app-notifications',
templateUrl: './notifications.component.html',
styleUrls: ['./notifications.component.scss'],
})
export class NotificationsComponent {
constructor(
public notifications$: NotificationsService
) {}
}