1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { RouterModule } from '@angular/router';
import { ProfilePanelModule } from '@rucken/ionic';
import { SharedModule } from '../../shared/shared.module';
import { ProfilePageComponent } from './profile-page.component';
import { PROFILE_PAGE_ROUTES } from './profile-page.routes';
@NgModule({
imports: [
CommonModule,
SharedModule,
ProfilePanelModule,
RouterModule.forChild(PROFILE_PAGE_ROUTES)
],
declarations: [ProfilePageComponent]
})
export class ProfilePageModule { }