9 lines
312 B
HTML
Raw Normal View History

<mat-accordion>
2019-09-25 18:08:50 +09:00
<mat-expansion-panel *ngFor="let group of groupList">
<mat-expansion-panel-header>
2019-09-25 18:08:50 +09:00
<mat-panel-title> {{ group.name }} </mat-panel-title>
<mat-panel-description>{{ group.name }} </mat-panel-description>
</mat-expansion-panel-header>
</mat-expansion-panel>
</mat-accordion>