Angular2 material dialog has issues – Did you add it to @NgModule.entryComponents?

I am trying to follow the docs on https://material.angular.io/components/component/dialog but I cannot understand why it has the below issue? I added the below on my component: @Component({ selector: ‘dialog-result-example-dialog’, templateUrl: ‘./dialog-result-example-dialog.html’, }) export class DialogResultExampleDialog { constructor(public dialogRef: MdDialogRef<DialogResultExampleDialog>) {} } In my module I added import { HomeComponent,DialogResultExampleDialog } from ‘./home/home.component’; @NgModule({ declarations: [ … Read more