8 lines
239 B
HTML
8 lines
239 B
HTML
<app-template-page [title]="'Restaurants :'">
|
|
<div *ngFor="let restaurantData of listRestaurants">
|
|
<app-card-resto [restaurant]= "restaurantData" (clickLike)="onEventLike()"></app-card-resto>
|
|
</div>
|
|
</app-template-page>
|
|
|
|
|
|
|