14 lines
380 B
TypeScript
14 lines
380 B
TypeScript
|
|
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
|
||
|
|
) {}
|
||
|
|
}
|