mirror of
https://github.com/akveo/ngx-admin.git
synced 2026-01-02 07:38:49 +01:00
feat: docs app
This commit is contained in:
parent
62e6828680
commit
165e64eaca
203 changed files with 15928 additions and 6 deletions
|
|
@ -0,0 +1,21 @@
|
|||
<ng-container [ngSwitch]="currentTab?.tab">
|
||||
<ng-container *ngFor="let component of source">
|
||||
|
||||
<ng-container *ngSwitchCase="'overview'">
|
||||
<ngx-overview-block *ngIf="hasOverview(component)" [source]="component"></ngx-overview-block>
|
||||
</ng-container>
|
||||
|
||||
<ng-container *ngSwitchCase="'theme'">
|
||||
<ngx-styles-block *ngIf="hasTheme(component)" [source]="component"></ngx-styles-block>
|
||||
</ng-container>
|
||||
|
||||
<ng-container *ngSwitchCase="'api'">
|
||||
<ngx-api-block *ngIf="hasAPI(component)" [source]="component" ></ngx-api-block>
|
||||
</ng-container>
|
||||
|
||||
<ng-container *ngSwitchCase="'examples'">
|
||||
<ngx-examples-block *ngIf="hasExamples(component)" [source]="component" ></ngx-examples-block>
|
||||
</ng-container>
|
||||
|
||||
</ng-container>
|
||||
</ng-container>
|
||||
Loading…
Add table
Add a link
Reference in a new issue