Last active
October 31, 2016 12:18
-
-
Save squadwuschel/bd1fe3386239929610220e5fd9ce3791 to your computer and use it in GitHub Desktop.
Angular 2.1.1 app.component.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Component } from '@angular/core'; | |
@Component({ | |
selector: 'my-app', | |
template: '<h1 class="well well-sm text-center">Hello World to - {{name}}</h1>' | |
}) | |
export class AppComponent { | |
public name : string = "SquadWuschel"; | |
constructor() { | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment