2016-08-09 12:31:52 -07:00

17 lines
505 B
TypeScript

// #docregion
import { NgModule } from '@angular/core';
import { SharedModule } from '../shared/shared.module';
import { ContactComponent } from './contact.component';
import { ContactService } from './contact.service';
import { routing } from './contact.routing';
// #docregion class
@NgModule({
imports: [ SharedModule, routing ],
declarations: [ ContactComponent ],
providers: [ ContactService ]
})
export class ContactModule { }
// #enddocregion class