mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 19:21:34 +08:00
23 lines
449 B
Cheetah
23 lines
449 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 Components.
|
|
*/
|
|
@Component({
|
|
selector: '$FILENAME',
|
|
templateUrl: '$FILENAME.html'
|
|
})
|
|
export class $CLASSNAME {
|
|
|
|
text: string;
|
|
|
|
constructor() {
|
|
console.log('Hello $CLASSNAME Component');
|
|
this.text = 'Hello World';
|
|
}
|
|
|
|
}
|