+ The world is your oyster.
+
+ If you get lost, the docs will be your guide.
+
+
+
+
+ `
+})
+export class HomePage {
+
+ constructor(public navCtrl: NavController) {
+
+ }
+
+ clickMe() {
+ this.navCtrl.push('TabsPage', { paramOne: 'ParamOneData', paramTwo: 'ParamTwoData'});
+ }
+
+}
diff --git a/src/components/nav/test/simple-nested-navs/pages/second-nav/second-nav.module.ts b/src/components/nav/test/simple-nested-navs/pages/second-nav/second-nav.module.ts
new file mode 100644
index 0000000000..b4a43298e8
--- /dev/null
+++ b/src/components/nav/test/simple-nested-navs/pages/second-nav/second-nav.module.ts
@@ -0,0 +1,13 @@
+import { NgModule } from '@angular/core';
+import { IonicPageModule } from '../../../../../..';
+import { SecondNav } from './second-nav';
+
+@NgModule({
+ imports: [
+ IonicPageModule.forChild(SecondNav)
+ ],
+ declarations: [
+ SecondNav
+ ]
+})
+export class SecondNavModule { }
diff --git a/src/components/nav/test/simple-nested-navs/pages/second-nav/second-nav.ts b/src/components/nav/test/simple-nested-navs/pages/second-nav/second-nav.ts
new file mode 100644
index 0000000000..88c04229d0
--- /dev/null
+++ b/src/components/nav/test/simple-nested-navs/pages/second-nav/second-nav.ts
@@ -0,0 +1,19 @@
+import { Component } from '@angular/core';
+import { IonicPage, NavController } from '../../../../../..';
+
+@IonicPage()
+@Component({
+ selector: 'page-home',
+ template: `
+