summaryrefslogtreecommitdiffstats
path: root/ecomp-sdk/epsdk-app-os/ngappsrc/src/app/user-profile/user-profile.module.ts
blob: 9aca44ff62e33d3f48b2ec8cbddc40c111fd6f40 (plain)
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
36
import {NgModule} from '@angular/core';
import {SelfComponent} from './profile/self/self.component';
import {SearchComponent} from './profile/search/search.component';
import {FormsModule} from '@angular/forms';
import {MatSortModule} from '@angular/material/sort';
import {
    MatFormFieldControl,
    MatFormFieldModule, MatInputModule,
    MatPaginatorModule,
    MatSelectModule,
    MatSlideToggleModule,
    MatTableModule
} from '@angular/material';
import {RdpModule} from 'portalsdk-tag-lib';
import {UserProfileComponent} from './user-profile.component';
import {UserProfileRouting} from './user-profile-routing.module';
import {CommonModule} from '@angular/common';

@NgModule({
    declarations: [SelfComponent, SearchComponent, UserProfileComponent ],
    imports: [
        MatInputModule,
        FormsModule,
        MatTableModule,
        MatFormFieldModule,
        MatSlideToggleModule,
        MatPaginatorModule,
        MatSelectModule,
        RdpModule, UserProfileRouting, CommonModule, MatSortModule

    ],
    entryComponents: [SelfComponent]
})
export class UserProfile{

}