Skip to content

Instantly share code, notes, and snippets.

@RaymsDev
Last active January 8, 2018 15:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RaymsDev/ff8c7e3a8e2690ac595a282b461f580a to your computer and use it in GitHub Desktop.
Save RaymsDev/ff8c7e3a8e2690ac595a282b461f580a to your computer and use it in GitHub Desktop.
[spfx-angular] app root component
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
template: `
<div>
<h1>
Welcome to {{ title }}!
</h1>
</div>
`,
})
export class AppComponent {
title = 'app';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment