docs: fix lazy loading example dir name (#21475)

PR Close #21475
This commit is contained in:
Kapunahele Wong
2018-01-11 11:09:23 -05:00
committed by Chuck Jazdzewski
parent 52cfe3952a
commit e79e98ab44
24 changed files with 5 additions and 5 deletions

View File

@ -0,0 +1,22 @@
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { HttpModule } from '@angular/http';
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
FormsModule,
HttpModule,
AppRoutingModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }