ngx-admin/docs/app/blocks/components/tabbed-example-block/tabbed-example-block.component.html

14 lines
469 B
HTML
Raw Normal View History

2021-08-06 18:48:35 +03:00
<button type="button"
*ngIf="hasViewSwitch"
class="btn action-item action-button"
(click)="switchToLiveView()">
<i class="icon feather-image"></i>
<span class="text">Live view</span>
</button>
<nb-tabset class="tabs-container">
<nb-tab *ngFor="let example of examples" tabTitle="{{ example.extension }}" [active]="example.active">
<ngx-code-block [path]="example.path" [code]="example.code"></ngx-code-block>
</nb-tab>
</nb-tabset>