mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-09-22 05:50:48 +02:00
14 lines
469 B
HTML
14 lines
469 B
HTML
![]() |
<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>
|