MaterialModule.forRoot is deprecated.
What do we need to use now?
Please read the release notes 馃槉馃憤
@NgModule({
imports: [
...
MaterialModule,
...
]
...
});
@mackelito is correct, you don't need to call forRoot
anymore.
This issue has been automatically locked due to inactivity.
Please file a new issue if you are encountering a similar or related problem.
Read more about our automatic conversation locking policy.
_This action has been performed automatically by a bot._
Most helpful comment
@NgModule({
imports: [
...
MaterialModule,
...
]
...
});