32 lines
830 B
TypeScript
32 lines
830 B
TypeScript
|
// #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';
|
||
|
|
||
|
|
||
|
import { routing } from './app.routing.3';
|
||
|
|
||
|
@NgModule({
|
||
|
// #docregion imports
|
||
|
imports: [
|
||
|
BrowserModule,
|
||
|
ContactModule,
|
||
|
routing
|
||
|
],
|
||
|
// #enddocregion imports
|
||
|
|
||
|
declarations: [ AppComponent, HighlightDirective, TitleComponent ],
|
||
|
providers: [ UserService ],
|
||
|
bootstrap: [ AppComponent ]
|
||
|
})
|
||
|
export class AppModule { }
|