2023-02-14 03:39:11 +00:00
|
|
|
import { Component, OnInit, Inject} from '@angular/core';
|
2022-07-22 20:42:58 +00:00
|
|
|
import { MAT_SNACK_BAR_DATA, MatSnackBarRef } from '@angular/material/snack-bar';
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'app-notifier',
|
|
|
|
templateUrl: './notifier.component.html',
|
2023-02-03 02:39:54 +00:00
|
|
|
styleUrls: ['./notifier.component.css'],
|
2022-07-22 20:42:58 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
export class NotifierComponent implements OnInit {
|
|
|
|
|
|
|
|
constructor(
|
|
|
|
public sbRef: MatSnackBarRef<NotifierComponent>,
|
|
|
|
@Inject(MAT_SNACK_BAR_DATA) public data: any
|
|
|
|
) {}
|
|
|
|
|
|
|
|
ngOnInit(): void {
|
2023-02-03 02:39:54 +00:00
|
|
|
|
2022-07-22 20:42:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|