22 lines
484 B
TypeScript
22 lines
484 B
TypeScript
import { Component, OnInit, Inject} from '@angular/core';
|
|
import { MAT_SNACK_BAR_DATA, MatSnackBarRef } from '@angular/material/snack-bar';
|
|
|
|
@Component({
|
|
selector: 'app-notifier',
|
|
templateUrl: './notifier.component.html',
|
|
styleUrls: ['./notifier.component.css'],
|
|
})
|
|
|
|
export class NotifierComponent implements OnInit {
|
|
|
|
constructor(
|
|
public sbRef: MatSnackBarRef<NotifierComponent>,
|
|
@Inject(MAT_SNACK_BAR_DATA) public data: any
|
|
) {}
|
|
|
|
ngOnInit(): void {
|
|
|
|
}
|
|
|
|
}
|