17 lines
505 B
TypeScript
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
|