Created
October 18, 2019 09:03
-
-
Save saimon24/df23ddc6c57a4d3f372c59e2acb4f0ce to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { NgModule } from '@angular/core'; | |
import { CommonModule } from '@angular/common'; | |
import { IonicModule } from '@ionic/angular'; | |
import { FormsModule } from '@angular/forms'; | |
import { RouterModule } from '@angular/router'; | |
import { HomePage } from './home.page'; | |
import { AcademyLibModule } from 'academy-lib'; | |
@NgModule({ | |
imports: [ | |
CommonModule, | |
FormsModule, | |
IonicModule, | |
RouterModule.forChild([ | |
{ | |
path: '', | |
component: HomePage | |
} | |
]), | |
AcademyLibModule | |
], | |
declarations: [HomePage] | |
}) | |
export class HomePageModule {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment