Skip to content

Instantly share code, notes, and snippets.

@RaymsDev
Last active January 8, 2018 15:01
Show Gist options
  • Save RaymsDev/ff8c7e3a8e2690ac595a282b461f580a to your computer and use it in GitHub Desktop.
Save RaymsDev/ff8c7e3a8e2690ac595a282b461f580a to your computer and use it in GitHub Desktop.

Revisions

  1. RaymsDev revised this gist Jan 8, 2018. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion app.component.ts
    Original file line number Diff line number Diff line change
    @@ -9,9 +9,9 @@ import { Component } from '@angular/core';
    </h1>
    </div>
    `,
    styleUrls: ['./app.component.css']
    })
    export class AppComponent {
    title = 'app';
    }


  2. RaymsDev created this gist Jan 8, 2018.
    17 changes: 17 additions & 0 deletions app.component.ts
    Original 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';
    }