commit | author | age | ||
a5a648 | 1 | import { NgModule } from '@angular/core'; |
W | 2 | import { IonicPageModule } from 'ionic-angular'; |
3 | import { HomePage } from './home'; | |
41fc80 | 4 | import { ComponentsModule } from '../../access/components/components.module'; |
a5a648 | 5 | @NgModule({ |
W | 6 | declarations: [ |
7 | HomePage, | |
8 | ], | |
9 | imports: [ | |
41fc80 | 10 | ComponentsModule, |
a5a648 | 11 | IonicPageModule.forChild(HomePage), |
W | 12 | ], |
13 | }) | |
14 | export class HomePageModule {} |