frontend-tutorial-framework/src/app/sidebar/sidebar.component.html

10 lines
357 B
HTML

<div class="tfw-ide-pin" *ngFor="let layoutIter of (enabledLayouts | async)">
<div>
<button [class.active]="layout === layoutIter"
(active)="layout === layoutIter"
(focus)="layout === layoutIter"
(click)="setLayout(layoutIter)"
class="btn"><img src="images/{{layoutIter}}.svg"></button>
</div>
</div>