ovh-show-app/src/app/app.component.html
2023-09-07 17:54:57 +02:00

10 lines
267 B
HTML

<div class="show-container">
<h1 class="title">Shows</h1>
<div class="current-time">
{{currentTime | date: 'YYYY-MM-dd HH:mm:ss' }}
</div>
<div class="show" *ngFor='let show of showsList'>
<app-accordion [show]="show"></app-accordion>
</div>
</div>