simpleat/src/app/pages/home-page/home-page.component.html
2022-01-20 12:18:00 +01:00

7 lines
298 B
HTML

<h2 class="titre ">Catégories :</h2>
<div class="separation"></div>
<div class="parent d-flex justify-content-center align-items-center flex-wrap flex-row ">
<div *ngFor="let category of listCategories">
<app-card-category [categoryData]="category"></app-card-category>
</div>
</div>