Project

General

Profile

1
import {NgModule} from '@angular/core';
2
import {RouterModule} from "@angular/router";
3
import {CommonModule} from "@angular/common";
4
import {PageContentModule} from "../../../openaireLibrary/dashboard/sharedComponents/page-content/page-content.module";
5
import {ProfileComponent} from "./profile.component";
6
import {EditCommunityModule} from "./edit-community/edit-community.module";
7
import {LoadingModule} from "../../../openaireLibrary/utils/loading/loading.module";
8
import {CommunityInfoModule} from "../community-info.module";
9

    
10
@NgModule({
11
  imports: [
12
    CommonModule,
13
    RouterModule.forChild([
14
      {
15
        path: '', component: ProfileComponent
16
      }
17
    ]),
18
    PageContentModule,
19
    EditCommunityModule,
20
    LoadingModule,
21
    CommunityInfoModule,
22
  ],
23
  declarations: [ProfileComponent],
24
  exports: [ProfileComponent]
25
})
26
export class ProfileModule {
27
}
(2-2/2)