comfirmation modal for deposit and refactoring

This commit is contained in:
Lea 2025-03-05 10:20:31 +01:00
parent 63db07b6ae
commit caf2794489
8 changed files with 74 additions and 32 deletions

View file

@ -0,0 +1,16 @@
import {Component, EventEmitter, Input, Output} from '@angular/core';
@Component({
selector: 'app-confirmation',
standalone: true,
imports: [],
templateUrl: './confirmation.component.html',
})
export class ConfirmationComponent {
@Input() successful: boolean = true;
@Output() close = new EventEmitter<void>();
public closeModal(){
this.close.emit();
}
}