add modal in similar case page

This commit is contained in:
Tykayn 2025-09-26 12:30:20 +02:00 committed by tykayn
parent a2afad0545
commit 8ef68379de
15 changed files with 371 additions and 185 deletions

View file

@ -0,0 +1,25 @@
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() {
}
}