New view of list

This commit is contained in:
Sébastien André
2019-10-09 13:10:41 +02:00
parent 11cdcba702
commit 2f59760cc1
15 changed files with 232 additions and 42 deletions

View File

@@ -0,0 +1,10 @@
<p>
list-of-aircrafts works!
</p>
<table>
<tr *ngFor="let aircraft of this.listOfAircrafts; index as i;">
<td>{{ aircraft.id }}</td>
<td>{{ aircraft.name }}</td>
</tr>
</table>