I'm using material tabs to display tabular data on my angular page. Since these tabs are generated automatically I can't seem to find a way to add an anchor link on the right.
My expected results after adding anchor are like this:
Code I'm using to display tabs:
<mat-tab-group dynamicHeight>
<mat-tab label="Tab 1">
<ng-template matTabContent>
Content here
</ng-template>
</mat-tab>
<mat-tab label="Tab 2">
<ng-template matTabContent>
Content here
</ng-template>
</mat-tab>
</mat-tab-group>
