25 lines
418 B
TypeScript
25 lines
418 B
TypeScript
import {Component, Input} from '@angular/core';
|
|
import {MainButton} from '../../buttons/main-button/main-button';
|
|
import {AlertBox} from '../../alert-box/alert-box';
|
|
|
|
@Component({
|
|
selector: 'sae-confirm',
|
|
imports: [
|
|
MainButton,
|
|
AlertBox
|
|
],
|
|
templateUrl: './confirm.html',
|
|
styleUrl: './confirm.scss'
|
|
})
|
|
export class Confirm {
|
|
|
|
@Input() showWhen: any = false;
|
|
|
|
confirm() {
|
|
|
|
}
|
|
|
|
reject() {
|
|
|
|
}
|
|
}
|