Last active
August 19, 2018 11:40
-
-
Save monirulalom/c33b529cf88a25528e8972d7704c68fc to your computer and use it in GitHub Desktop.
angular interpolation
This file contains hidden or 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>{{ 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