i am working on an angular2 application where i am using grid list module for creating grids. i have used grid tile tag within the grid list tag for running a for loop but while running the test, it throws up an error stating : template parse error: md-grid-tile' is not a known element i have included the MdGridListModule in my module.ts file. The html part where i am using the tags looks like this :
<div class="col-md-8">
<div class="layout">
<h2 >{{title}}</h2>
<md-grid-list class="grid" cols="3">
<md-grid-tile class="tile" *ngFor="let block of gs.blocks; let i = index" (click)="playerClick(i)"><i [class]="block.symbol == 'done' ? 'material-icons tick' : 'material-icons cross'">{{ block.symbol }}</i></md-grid-tile>
</md-grid-list>
</div>
</div>