I am trying to create a material table with data of dynamic headers and rows which is an array of array of strings. But I am not able to get rows inside the table
https://stackblitz.com/edit/angular-ivy-j5prjg?file=src%2Fapp%2Fapp.component.html
<div *ngIf="customerResponse">
<mat-table [dataSource]="customerResponse.customerDataRows">
<ng-container *ngFor="let disCol of customerResponse.customerHeader; let colIndex = index"
matColumnDef="{{ disCol }}">
<th mat-header-cell *matHeaderCellDef>{{ disCol }}</th>
<ng-container *ngFor="let disRow of customerResponse.customerDataRows;">
<td mat-cell *matCellDef="">{{disRow}}</td>
</ng-container>
</ng-container>
<mat-header-row *matHeaderRowDef="customerResponse.customerHeader; "></mat-header-row>
<mat-row *matRowDef="let row; columns: customerResponse.customerHeader"></mat-row>
</mat-table>
</div>
Right now, I can show the headers that I get from the ts file but I need help in getting the rows data inside the mat cell