Files
wgenerator/src/app/modules/guest/guest.component.html
2021-05-21 20:17:26 +02:00

12 lines
271 B
HTML

<div *ngIf="songs$ | async as songs" class="view">
<swiper>
<div *ngFor="let song of songs" class="song">
<app-song-text
[showSwitch]="false"
[text]="song | async"
chordMode="hide"
></app-song-text>
</div>
</swiper>
</div>