Last active
January 8, 2018 15:01
-
-
Save RaymsDev/ff8c7e3a8e2690ac595a282b461f580a to your computer and use it in GitHub Desktop.
[spfx-angular] app root component
This file contains 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: '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