|
- import { Component } from '@angular/core';
- import { MatDialogRef } from '@angular/material/dialog';
-
- @Component({
- selector: 'app-confirm-dialog',
- templateUrl: './confirm-dialog.component.html',
- styleUrls: ['./confirm-dialog.component.scss'],
- })
- export class ConfirmDialogComponent {
- constructor(public dialogRef: MatDialogRef<ConfirmDialogComponent>) {}
- data = [
- {
- name: 'FIRE ALARM',
- ignore: false,
- },
- {
- name: 'FENCE ALARM',
- ignore: false,
- },
- ];
-
-
-
- }
|