Winkelmodule hinzufügen
ng generate module CustomerDashboard
Silly Shrike
ng generate module CustomerDashboard
@NgModule({
imports: [ BrowserModule, HttpModule, FormsModule ],
declarations: [ PersonComponent, ContactComponent, ContactListComponent ],
providers: [ PersonService, ContactService ],
exports: [ ContactListComponent, ContactComponent ]
})
export class ContactModule {}