You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
argos/dmp-frontend/src/app/library/notification/popup/popup-notification.componen...

17 lines
542 B
TypeScript

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