23 lines
732 B
TypeScript
23 lines
732 B
TypeScript
// #docregion
|
|
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
import { AwesomePipe } from './awesome.pipe';
|
|
|
|
import { ContactComponent } from './contact.component.3';
|
|
import { ContactService } from './contact.service';
|
|
import { HighlightDirective } from './highlight.directive';
|
|
|
|
import { routing } from './contact.routing.3';
|
|
|
|
// #docregion class
|
|
@NgModule({
|
|
imports: [ CommonModule, FormsModule, routing ],
|
|
declarations: [ ContactComponent, HighlightDirective, AwesomePipe ],
|
|
providers: [ ContactService ]
|
|
})
|
|
export class ContactModule { }
|
|
// #enddocregion class
|
|
// #enddocregion
|