Skip to content

Instantly share code, notes, and snippets.

@wKoza
Created October 15, 2016 10:12
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 wKoza/64476d98c19137d9a7b4e2e042c91380 to your computer and use it in GitHub Desktop.
Save wKoza/64476d98c19137d9a7b4e2e042c91380 to your computer and use it in GitHub Desktop.
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
template: `
<div align="{{alignement}}" >Personne : {{person}} | Age : {{age}} | Adresse : {{address.street}}</div>
`
})
export class AppComponent {
person:string= 'John Doe';
age:number= 30;
address:any= {street:'rue du Paradis', city:'75010 Paris'};
alignement:string = 'right';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment