blob: 9f42916a1190f2591d33f90bc35b0f234b0f745e [file] [log] [blame]
import {Component} from '@angular/core';
@Component({
selector: 'fountain-app',
template: require('./hello.html')
})
export class HelloComponent {
public hello: string;
constructor() {
this.hello = 'Hello World!';
}
}