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

8 lines
299 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>