17 lines
505 B
TypeScript
Raw Normal View History

2016-07-12 18:14:13 -07:00
// #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