Last active
August 19, 2018 11:40
-
-
Save monirulalom/c33b529cf88a25528e8972d7704c68fc to your computer and use it in GitHub Desktop.
Revisions
-
monirulalom revised this gist
Aug 19, 2018 . 1 changed file with 1 addition and 3 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -2,9 +2,7 @@ import { Component } from '@angular/core'; @Component({ selector: 'my-app', template: `<h1>{{ name }}</h1>` }) export class AppComponent { name: string = 'Monirul Alom'; -
monirulalom created this gist
Aug 19, 2018 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,11 @@ import { Component } from '@angular/core'; @Component({ selector: 'my-app', template: ` <h1>{{ name }}</h1> ` }) export class AppComponent { name: string = 'Monirul Alom'; }