I have HeaderComponent,FootComponent and Customer Components.I had create CustomerModule and CustomerRoutingModule
CustomerModule
declarations: [CustomerComponent]
CustomerRoutingModule
const routes: Routes = [
{
path: '',
component: CustbasicdetailsComponent
}
];
App.routing
{
path: 'custbasicdetails' ,
loadChildren: 'app/customer/customer.module#CustomerModule'
},
But i am getting error
'header' is not a known element:
1. If 'header' is an Angular component, then verify that it is part of this module.
EDITED :
HeaderComponent,FooterComponent in app.module.ts