I am trying to add angular material component. but the component did not work properly. that error said
Uncaught Error: Template parse errors: \'mat-option\
You need to import MatSelectModule cause mat-option are declared inside this module and add this into the AppModule imports
MatSelectModule
mat-option
AppModule
import { ..., MatSelectModule, ... } from '@angular/material'; @NgModule({ imports: [ ..., MatSelectModule, ...] }) export class AppModule { }