Slide 33
Slide 33 text
Import modules
import {MatButtonModule, MatCheckboxModule} from '@angular/material';
@NgModule({
...
imports: [MatButtonModule, MatCheckboxModule],
...
})
export class TutorialAppModule { }
* Import the NgModule
Note : Create a separate NgModule that imports all of the Material components that you will use in your application.