argos/dmp-frontend/src/app/library/notification/popup/popup-notification.componen...

18 lines
593 B
TypeScript

import { Component, Inject } from '@angular/core';
import { MAT_DIALOG_DATA, MatDialogRef } from '@angular/material/dialog';
import { PopupNotification } from '../../../core/services/notification/ui-notification-service';
@Component({
selector: 'app-popup-notification-dialog',
templateUrl: './popup-notification.component.html',
styleUrls: ['popup-notification.component.scss']
})
export class PopupNotificationDialogComponent {
constructor(
public dialogRef: MatDialogRef<PopupNotificationDialogComponent>,
@Inject(MAT_DIALOG_DATA) public notification: PopupNotification
) {
}
}