Files
ionic-framework/scripts/templates/component/ts.tmpl
2016-09-13 15:02:41 -05:00

21 lines
396 B
Cheetah

import { Component } from '@angular/core';
/*
Generated class for the $CLASSNAME component.
See https://angular.io/docs/ts/latest/api/core/index/ComponentMetadata-class.html
for more info on Angular 2 Components.
*/
@Component({
selector: '$FILENAME',
templateUrl: '$FILENAME.html'
})
export class $CLASSNAME {
text: string;
constructor() {
this.text = 'Hello World';
}
}