This commit is contained in:
2025-11-10 23:28:24 +01:00
parent 6ec3fc4cc3
commit c381a1c5e5
6 changed files with 112 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
<button nz-button nzType="primary" (click)="showModal()">
<span>Ajouter un livre</span> Ajouter
</button>
<nz-modal
[(nzVisible)]="isVisible"
nzTitle="Ajouter"
(nzOnCancel)="handleCancel()"
(nzOnOk)="handleOk()"
[nzOkLoading]="isOkLoading"
>
<ng-container [ngComponentOutlet]="content"></ng-container>
</nz-modal>