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{ }