parent
738f2961ba
commit
e86f3d9a49
@ -1,15 +1,14 @@
|
|||||||
// #docplaster
|
// #docplaster
|
||||||
// #docregion app-module
|
// #docregion app-module
|
||||||
import { BrowserModule } from '@angular/platform-browser';
|
import { HttpClientModule } from '@angular/common/http';
|
||||||
import { NgModule } from '@angular/core';
|
import { NgModule } from '@angular/core';
|
||||||
import { FormsModule } from '@angular/forms';
|
import { FormsModule } from '@angular/forms';
|
||||||
import { HttpModule } from '@angular/http';
|
import { BrowserModule } from '@angular/platform-browser';
|
||||||
|
|
||||||
import { AppComponent } from './app.component';
|
import { AppComponent } from './app.component';
|
||||||
// import the feature module here so you can add it to the imports array below
|
// import the feature module here so you can add it to the imports array below
|
||||||
import { CustomerDashboardModule } from './customer-dashboard/customer-dashboard.module';
|
import { CustomerDashboardModule } from './customer-dashboard/customer-dashboard.module';
|
||||||
|
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
declarations: [
|
declarations: [
|
||||||
AppComponent
|
AppComponent
|
||||||
@ -17,7 +16,7 @@ import { CustomerDashboardModule } from './customer-dashboard/customer-dashboard
|
|||||||
imports: [
|
imports: [
|
||||||
BrowserModule,
|
BrowserModule,
|
||||||
FormsModule,
|
FormsModule,
|
||||||
HttpModule,
|
HttpClientModule,
|
||||||
CustomerDashboardModule // add the feature module here
|
CustomerDashboardModule // add the feature module here
|
||||||
],
|
],
|
||||||
providers: [],
|
providers: [],
|
||||||
|
Loading…
x
Reference in New Issue
Block a user