Hi I am trying to use the angular material in my project. This is the code which i have written in html file.
Here i am trying to use mat-grid in mat-toolbar
<mat-toolbar color="primary">
<mat-grid-list cols="3">
<mat-grid-tile>
left
</mat-grid-tile>
<mat-grid-tile>
center
</mat-grid-tile>
<mat-grid-tile>
right
</mat-grid-tile>
</mat-grid-list>
</mat-toolbar>
I have alredy imported both MatToolbarModule, MatGridListModule in app module and there is no error in console. I am not able to see any text in toolbar. can any one help?