flosight-api/app/src/components/denomination/denomination.ts
2018-01-30 16:01:31 -05:00

23 lines
495 B
TypeScript

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