ts.tmpl 414 B

12345678910111213141516171819202122
  1. import { Component } from '@angular/core';
  2. $TABS_IMPORTSTATEMENT
  3. /**
  4. * Generated class for the $CLASSNAME tabs.
  5. *
  6. * See https://ionicframework.com/docs/components/#navigation for more info on
  7. * Ionic pages and navigation.
  8. */
  9. $IONICPAGE
  10. @Component({
  11. selector: 'page-$FILENAME',
  12. templateUrl: '$FILENAME.html'
  13. })
  14. export class $CLASSNAME {
  15. $TAB_VARIABLES
  16. constructor(public navCtrl: NavController) {}
  17. }