Skip to content

Instantly share code, notes, and snippets.

@saimon24
Created October 18, 2019 09:03
Show Gist options
  • Save saimon24/df23ddc6c57a4d3f372c59e2acb4f0ce to your computer and use it in GitHub Desktop.
Save saimon24/df23ddc6c57a4d3f372c59e2acb4f0ce to your computer and use it in GitHub Desktop.
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