You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Ombi/src/Ombi/ClientApp/src/app/requests-list/components/requests-list.component.html

22 lines
565 B

<div class="small-middle-container">
<mat-tab-group>
<div class="buttons">
<mat-tab label="Movies">
<ng-template matTabContent>
<movies-grid (onOpenOptions)="onOpenOptions($event)"></movies-grid>
</ng-template>
</mat-tab>
<mat-tab label="TV Shows">
<ng-template matTabContent>
<tv-grid (onOpenOptions)="onOpenOptions($event)"></tv-grid>
</ng-template>
</mat-tab>
<mat-tab label="Albums">
<h1>Coming soon</h1>
<p>...</p>
</mat-tab>
</div>
</mat-tab-group>
</div>