'mat-grid-tile' is not a known element
platform-browser-dynamic.js:230 Uncaught Error: Template parse errors:
'mat-grid-tile' is not a known element:
1. If 'mat-grid-tile' is an Angular component, then verify that it is part of this module.
2. If 'mat-grid-tile' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message. ("
Solution 1:
import {MatGridListModule} from '@angular/material/grid-list';
in app.modules.ts
And specify MatGridListModule in the import property.
Comments
Post a Comment