Skip to content

Instantly share code, notes, and snippets.

@monirulalom
Last active August 19, 2018 11:40
Show Gist options
  • Save monirulalom/c33b529cf88a25528e8972d7704c68fc to your computer and use it in GitHub Desktop.
Save monirulalom/c33b529cf88a25528e8972d7704c68fc to your computer and use it in GitHub Desktop.
angular interpolation
import { Component } from '@angular/core';
@Component({
selector: 'my-app',
template: `<h1>{{ name }}</h1>`
})
export class AppComponent {
name: string = 'Monirul Alom';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment