File tree Expand file tree Collapse file tree 3 files changed +12
-17
lines changed
scripts/templates/component Expand file tree Collapse file tree 3 files changed +12
-17
lines changed Original file line number Diff line number Diff line change 1- <!--
2- Generated template for the $CLASSNAME component.
3-
4- See https://angular.io /docs/ts/latest/api/core/index /ComponentMetadata-class.html
5- for more info on Angular 2 Components.
6- -->
1+ <!-- Generated template for the $CLASSNAME component -->
72<div>
83 {{text}}
94</div>
Original file line number Diff line number Diff line change 11import { NgModule } from '@angular/core';
2- import { $CLASSNAMEComponent } from '. /$FILENAME ';
2+ import { $CLASSNAME } from '. /$FILENAME ';
33import { IonicModule } from 'ionic-angular';
44
55@NgModule({
66 declarations: [
7- $CLASSNAMEComponent ,
7+ $CLASSNAME ,
88 ],
99 imports: [
10- IonicModule.forChild ($CLASSNAMEComponent )
10+ IonicModule.forChild ($CLASSNAME ),
1111 ]
1212})
13- export class $CLASSNAMEComponentModule {}
13+ export class $CLASSNAMEModule {}
Original file line number Diff line number Diff line change 11import { Component } from '@angular/core';
22
3- /*
4- Generated class for the $CLASSNAME component.
5-
6- See https://angular.io/docs/ts/latest/api/core/index/ComponentMetadata-class.html
7- for more info on Angular 2 Components.
8- */
3+ /* *
4+ * Generated class for the $CLASSNAME component.
5+ *
6+ * See https://angular.io/docs/ts/latest/api/core/index/ComponentMetadata-class.html
7+ * for more info on Angular Components.
8+ */
99@Component({
1010 selector: '$FILENAME ',
1111 templateUrl: '$FILENAME .html '
1212})
13- export class $CLASSNAMEComponent {
13+ export class $CLASSNAME {
1414
1515 text: string;
1616
You can’t perform that action at this time.
0 commit comments