I am looking to make a mat-card component clickable by adding a routerlink. Here is my current component structure:
<mat-card class="card" >
<mat-card-content>
<mat-card-title> {{title}}</mat-card-title>
<mat-card-subtitle> {{subtitle}} </mat-card-subtitle>
</mat-card-content>
</mat-card>
Any suggestions on how I can achieve this?
Appreciate any help.