2016-07-12 18:14:13 -07:00
|
|
|
// #docplaster
|
|
|
|
// #docregion
|
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { BrowserModule } from '@angular/platform-browser';
|
|
|
|
|
|
|
|
/* App Root */
|
|
|
|
import { AppComponent } from './app.component.3';
|
|
|
|
import { HighlightDirective } from './highlight.directive';
|
|
|
|
import { TitleComponent } from './title.component';
|
|
|
|
import { UserService } from './user.service';
|
|
|
|
|
|
|
|
/* Feature Modules */
|
|
|
|
import { ContactModule } from './contact/contact.module.3';
|
2016-10-05 16:59:09 -05:00
|
|
|
|
|
|
|
/* Routing Module */
|
|
|
|
import { AppRoutingModule } from './app-routing.module.3';
|
2016-07-12 18:14:13 -07:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
// #docregion imports
|
|
|
|
imports: [
|
|
|
|
BrowserModule,
|
|
|
|
ContactModule,
|
2016-10-05 16:59:09 -05:00
|
|
|
AppRoutingModule
|
2016-07-12 18:14:13 -07:00
|
|
|
],
|
|
|
|
// #enddocregion imports
|
|
|
|
providers: [ UserService ],
|
2016-08-23 00:17:18 -07:00
|
|
|
declarations: [ AppComponent, HighlightDirective, TitleComponent ],
|
2016-07-12 18:14:13 -07:00
|
|
|
bootstrap: [ AppComponent ]
|
|
|
|
})
|
|
|
|
export class AppModule { }
|