Skip to content

Instantly share code, notes, and snippets.

@matthieu-D
Last active June 23, 2017 20:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matthieu-D/eab47e419d4b9fa83e64343c4caf9b84 to your computer and use it in GitHub Desktop.
Save matthieu-D/eab47e419d4b9fa83e64343c4caf9b84 to your computer and use it in GitHub Desktop.
import { Component } from '@angular/core';
import { NavController } from 'ionic-angular';
import { AboutPage } from '../about/about';
@Component({
selector: 'page-home',
templateUrl: 'home.html'
})
export class HomePage {
constructor(public navCtrl: NavController) {
}
ngOnInit() {
this.navCtrl.push(AboutPage);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment