blob: 9f42916a1190f2591d33f90bc35b0f234b0f745e [file] [log] [blame]
Matteo Scandolod819c922016-12-02 14:06:14 -08001import {Component} from '@angular/core';
2
3@Component({
4 selector: 'fountain-app',
5 template: require('./hello.html')
6})
7export class HelloComponent {
8 public hello: string;
9
10 constructor() {
11 this.hello = 'Hello World!';
12 }
13}