mirror of
https://github.com/house-of-vanity/hexound.ru.git
synced 2025-07-07 06:44:07 +00:00
17 lines
399 B
HTML
17 lines
399 B
HTML
![]() |
<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>
|