This commit is contained in:
Alex
2019-05-26 14:56:33 +03:00
parent ba44a4f1d0
commit d9db1b3f0e
14 changed files with 349 additions and 0 deletions

View File

@ -0,0 +1,16 @@
<div style="text-align: center">
<table style="margin: 0 auto" *ngFor="let song of commonService.songArray" class="mat-elevation-z8">
<tr>
<th>No.</th>
<th>Name</th>
<th>Time</th>
</tr>
<tr>
<td> {{song.id}} </td>
<td style="width: 500px; text-align: center"> {{song.songName}} </td>
<td> {{song.time}} </td>
</tr>
</table>
</div>