17 lines
357 B
TypeScript
17 lines
357 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-confirmation-dialog',
|
|
templateUrl: './confirmation-dialog.component.html',
|
|
styleUrls: ['./confirmation-dialog.component.scss'],
|
|
})
|
|
export class ConfirmationDialogComponent implements OnInit {
|
|
constructor() {}
|
|
|
|
ngOnInit(): void {}
|
|
|
|
confirm() {}
|
|
|
|
returnBack() {}
|
|
}
|