Sengi-Windows-MacOS-Linux/src/app/components/stream/stream.component.html

11 lines
310 B
HTML

<div id="mam-stream-column">
<div id="mam-stream-header">
<a href title="return to top" (click)="goToTop()"><h1>{{ stream.streamName.toUpperCase() }}</h1></a>
</div>
<div id="mam-stream-toots">
<div *ngFor="let toot of toots">
<app-toot [toot]="toot"></app-toot>
</div>
</div>
</div>