Skip to content

Instantly share code, notes, and snippets.

@debugmodedotnet
Created December 12, 2016 08:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save debugmodedotnet/fc07dd44ee913e0744e2814db8fda1ae to your computer and use it in GitHub Desktop.
Save debugmodedotnet/fc07dd44ee913e0744e2814db8fda1ae to your computer and use it in GitHub Desktop.
import {Component} from '@angular/core';
@Component({
moduleId:module.id,
selector:'my-app',
template:`
<div class="container">
<input [(ngModel)]='name' />
<br/>
<h1>Hello {{name}}</h1>
</div>
`
})
export class AppComponent{
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment