chore(templates): modify tabs template to code-split

This commit is contained in:
jgw96
2017-03-15 14:54:17 -05:00
parent d93ca82666
commit 5d668036e6
2 changed files with 17 additions and 1 deletions

View File

@ -0,0 +1,17 @@
import { NgModule } from '@angular/core';
import { $CLASSNAMEPage } from './$FILENAME';
import { IonicModule } from 'ionic-angular';
@NgModule({
declarations: [
$CLASSNAMEPage,
],
imports: [
IonicModule.forChild($CLASSNAMEPage)
],
entryComponents: [
$CLASSNAMEPage
],
providers: []
})
export class $CLASSNAMEPageModule {}

View File

@ -1,6 +1,5 @@
import { Component } from '@angular/core'; import { Component } from '@angular/core';
import { NavController } from 'ionic-angular'; import { NavController } from 'ionic-angular';
$TAB_IMPORTS
/* /*
Generated class for the $CLASSNAME tabs. Generated class for the $CLASSNAME tabs.