mat


<mat-list>
	<mat-list-item>item1 here</mat-list-item>
	<mat-list-item>item2 here</mat-list-item>
	<mat-list-item>item3 here</mat-list-item>
    <a mat-list-item href="..." *ngFor="let link of links"> {{ link }} </a>
</mat-list>
<mat-action-list>
  <button mat-list-item (click)="save()"> Save </button>
  <button mat-list-item (click)="undo()"> Undo </button>
</mat-action-list>
<mat-selection-list #shoes>
  <mat-list-option *ngFor="let shoe of typesOfShoes">
    {{shoe}}
  </mat-list-option>
</mat-selection-list>

<p>
  Options selected: {{shoes.selectedOptions.selected.length}}
</p>