Last active
January 8, 2018 15:01
-
-
Save RaymsDev/ff8c7e3a8e2690ac595a282b461f580a to your computer and use it in GitHub Desktop.
Revisions
-
RaymsDev revised this gist
Jan 8, 2018 . 1 changed file with 1 addition and 1 deletion.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 @@ -9,9 +9,9 @@ import { Component } from '@angular/core'; </h1> </div> `, }) export class AppComponent { title = 'app'; } -
RaymsDev created this gist
Jan 8, 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,17 @@ import { Component } from '@angular/core'; @Component({ selector: 'app-root', template: ` <div> <h1> Welcome to {{ title }}! </h1> </div> `, styleUrls: ['./app.component.css'] }) export class AppComponent { title = 'app'; }