chore(generators): change class name

This commit is contained in:
Justin Willis
2016-10-18 14:25:29 -05:00
parent 13b32896fa
commit d334a43108
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ import { Component } from '@angular/core';
selector: '$FILENAME',
templateUrl: '$FILENAME.html'
})
export class $CLASSNAME {
export class $CLASSNAMEComponent {
text: string;

View File

@ -11,7 +11,7 @@ import { NavController } from 'ionic-angular';
selector: 'page-$FILENAME',
templateUrl: '$FILENAME.html'
})
export class $CLASSNAME {
export class $CLASSNAMEPage {
constructor(public navCtrl: NavController) {}