source: trip-planner-front/src/app/location/location.component.html@ 6a3a178

Last change on this file since 6a3a178 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 299 bytes
Line 
1<div *ngFor="let category of categories">
2 {{category.name}}
3 </div>
4
5 <hr>
6
7 <div *ngFor="let city of cities">
8 {{city.name}}
9 </div>
10 <div *ngFor="let country of countries">
11 {{country.name}}
12 </div>
13
14 <hr>
15 <div *ngFor="let companion of companions">
16 {{companion.type}}
17 </div>
Note: See TracBrowser for help on using the repository browser.