study-lib-frontend/src/app/group/components/group-main/group-main.component.html
2020-12-21 23:12:12 +01:00

19 lines
486 B
HTML

<div class="d-flex justify-content-end">
<button (click)="onAddNew()" class="btn btn-primary mb-3">Add new group</button>
</div>
<mat-tab-group>
<mat-tab label="My groups">
<app-group-list
[groups]="userGroups"
(show)="onShow($event)">
</app-group-list>
</mat-tab>
<mat-tab label="All groups">
<app-group-list
[groups]="allGroups"
(joinRequest)="onJoinRequest($event)"
(show)="onShow($event)">
</app-group-list>
</mat-tab>
</mat-tab-group>