Im getting the following error when i try to open Material Dialog in ConfirmBoxComponent.
No component factory found for ConfirmBoxComponent. Did you add it to @NgModule.entryComponents? I have already added ConfirmBoxComponent in entryComponents list
declarations: [
ConfirmBoxComponent
],
exports: [ConfirmBoxComponent],
entryComponents: [
ConfirmBoxComponent
],
The module that contain ConfirmBoxComponent is loaded via Lazy loading technique.
I'm using latest version of Angular and Material
"@angular/core": "^5.0.0", "@angular/material": "^5.0.0-rc0"