Mise en ligne de la version 0.2.0
This commit is contained in:
18
web/src/app/app.component.html
Normal file
18
web/src/app/app.component.html
Normal file
@@ -0,0 +1,18 @@
|
||||
<div class="app-container">
|
||||
<app-sidebar></app-sidebar>
|
||||
|
||||
<ng-container *ngIf="sidebarConfig$ | async as config">
|
||||
<app-secondary-sidebar
|
||||
[title]="config.title"
|
||||
[items]="config.items"
|
||||
[createActions]="config.createActions"
|
||||
[bottomPanel]="config.bottomPanel || null">
|
||||
</app-secondary-sidebar>
|
||||
</ng-container>
|
||||
|
||||
<main class="main-content">
|
||||
<router-outlet></router-outlet>
|
||||
</main>
|
||||
</div>
|
||||
|
||||
<app-global-search></app-global-search>
|
||||
Reference in New Issue
Block a user