-
-
Notifications
You must be signed in to change notification settings - Fork 202
Expand file tree
/
Copy pathshared.module.ts
More file actions
35 lines (34 loc) · 1.15 KB
/
shared.module.ts
File metadata and controls
35 lines (34 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import { NgModule } from '@angular/core';
import {ContactListComponent} from '../components/contact-list/contact-list.component';
import {ContactFormComponent} from '../components/contact-form/contact-form.component';
import {ContactDetailsContainerComponent} from '../components/contact-details/contact-details-container.component';
import {ToolbarComponent} from '../components/toolbar/toolbar.component';
import {CommonModule} from '@angular/common';
import {ReactiveFormsModule} from '@angular/forms';
import {RouterModule} from '@angular/router';
import {FooterComponent} from '@app/core/components/footer/footer.component';
import {HighLightTextPipe} from "@app/core/pipes/high-light-text.pipe";
@NgModule({
imports: [
CommonModule,
ReactiveFormsModule,
RouterModule
],
declarations: [
ContactListComponent,
ContactDetailsContainerComponent,
ContactFormComponent,
ToolbarComponent,
FooterComponent,
HighLightTextPipe
],
exports: [
ContactListComponent,
ContactDetailsContainerComponent,
ContactFormComponent,
ToolbarComponent,
FooterComponent,
HighLightTextPipe
]
})
export class SharedModule { }