31 lines
865 B
TypeScript
Raw Normal View History

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';
/* Routing Module */
import { AppRoutingModule } from './app-routing.module.3';
2016-07-12 18:14:13 -07:00
@NgModule({
// #docregion imports
imports: [
BrowserModule,
ContactModule,
AppRoutingModule
2016-07-12 18:14:13 -07:00
],
// #enddocregion imports
providers: [ UserService ],
declarations: [ AppComponent, HighlightDirective, TitleComponent ],
2016-07-12 18:14:13 -07:00
bootstrap: [ AppComponent ]
})
export class AppModule { }