I have the below steps to install angular material in my angular project version 10.0.5.
After importing the MatButtonModule in app.module.ts file facing the below error.
Module ‘”@angular/material”‘ has no exported member ‘MatButtonModule’.ts
Step1: npm install –save @angular/material @angular/cdk –force
step2: npm install –save @angular/animations –force
step3:
import {MatButtonModule, MatCheckboxModule} from '@angular/material';
@NgModule({
imports: [MatButtonModule, MatCheckboxModule]
})
After importing the MatButtonModule in app.module.ts file facing the below error.