Add this to your module.ts,
declarations: [
AppComponent,
ConfirmComponent
]
if the ConfirmComponent is in another module, you need to export it there so that you can use it outside, add:
exports: [ ConfirmComponent ]
ComponentFactory entryComponents:
declarations: [
AppComponent,
ConfirmComponent
],
entryComponents: [ConfirmComponent],
entryComponents
, . , , Angular ComponentFactory ComponentFactoryResolver.