mirror of
https://github.com/simon987/task_tracker.git
synced 2025-04-19 18:16:45 +00:00
26 lines
526 B
TypeScript
26 lines
526 B
TypeScript
import {Component, OnInit} from '@angular/core';
|
|
import {MatDialogRef} from "@angular/material";
|
|
|
|
@Component({
|
|
selector: 'app-are-you-sure',
|
|
templateUrl: './are-you-sure.component.html',
|
|
styleUrls: ['./are-you-sure.component.css']
|
|
})
|
|
export class AreYouSureComponent implements OnInit {
|
|
|
|
constructor(public dialogRef: MatDialogRef<AreYouSureComponent>) {
|
|
}
|
|
|
|
ngOnInit() {
|
|
|
|
}
|
|
|
|
onNoClick() {
|
|
this.dialogRef.close(false)
|
|
}
|
|
|
|
onYesClick() {
|
|
this.dialogRef.close(true)
|
|
}
|
|
}
|